]> gitweb @ CieloNegro.org - sugar.git/blob - dot-files/_gitconfig
48089e73b0a3baf35576bbed8f85b4a7f45f2b67
[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 [grep]
10         lineNumber = true
11 [http]
12         sslVerify = false
13 [log]
14         decorate = full
15 [alias]
16         ci = commit
17         co = checkout
18         sh = show
19         st = status
20         gl = log --stat --graph
21         pullall = "!f(){ git pull \"$@\" && git submodule update --init --recursive; }; f"
22         review = "!f(){ git push origin HEAD:refs/for/${1-master}; }; f"
23         draft = "!f(){ git push origin HEAD:refs/drafts/${1-master}; }; f"
24 [push]
25         default = simple