]> gitweb @ CieloNegro.org - sugar.git/blob - dot-files/_gitconfig
33e376087718543cbe79f8225f77edddb3755882
[sugar.git] / dot-files / _gitconfig
1 [user]
2         name = PHO
3         email = pho@cielonegro.org
4         signingkey = pho@cielonegro.org
5 [color]
6         ui = true
7 [diff]
8         renames = copies
9         compactionHeuristic = true
10 [grep]
11         lineNumber = true
12 [http]
13         sslVerify = false
14 [log]
15         decorate = full
16 [alias]
17         ci = commit
18         co = checkout
19         sh = show
20         st = status
21         gl = log --stat --graph
22         pullall = "!f(){ git pull \"$@\" && git submodule update --init --recursive; }; f"
23         review = "!f(){ git push origin HEAD:refs/for/${1-master}; }; f"
24         draft = "!f(){ git push origin HEAD:refs/drafts/${1-master}; }; f"
25 [push]
26         default = simple
27 [pull]
28         rebase = true