blob: 6e06c8750d6ed73b6fcb06c11064ea8fdddaf865 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
[user]
name = Benjamin Franzke
email = benjaminfranzke@gmail.com
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
smtpuser = benjaminfranzke@googlemail.com
smtpserverport = 587
[log]
decorate = true
[alias]
grp = !git --no-pager grep --color=auto
tree = log --oneline --decorate --graph
t3x-pack = "!sh -c 'git archive -o \"${PWD##*/}_`git describe --tags`.zip\" HEAD'"
branch-info = "!sh -c 'git branch --no-color | \
sed -e \"s/*/ /\" | \
while read branch; do \
git log -1 --format=format:\"%Cred$branch:%Cblue %s %Cgreen%h%Creset (%ar)\" $branch | cat; echo; \
done'"
[push]
default = simple
[color]
ui = false
diff = auto
status = auto
branch = auto
[apply]
whitespace = strip
|