]> gitweb @ CieloNegro.org - sugar.git/blobdiff - dot-files/_gitconfig
Auto commit by The Sugar System.
[sugar.git] / dot-files / _gitconfig
index c40f8d4e498a0827a008cdf4b82459ce4d8cf4a7..015551f0e0fdc14f7928152a800f7ccca772a424 100644 (file)
@@ -6,8 +6,11 @@
        ui = true
 [diff]
        renames = copies
+       compactionHeuristic = true
 [grep]
        lineNumber = true
+[http]
+       sslVerify = false
 [log]
        decorate = full
 [alias]
        co = checkout
        sh = show
        st = status
-       gr = log --stat --graph
+       gl = log --stat --graph
+       pullall = "!f(){ git pull \"$@\" && git submodule update --init --recursive; }; f"
+       review = "!f(){ git push origin HEAD:refs/for/${1-master}; }; f"
+       draft = "!f(){ git push origin HEAD:refs/drafts/${1-master}; }; f"
+[push]
+       default = simple
+[pull]
+       rebase = true
+[init]
+       defaultBranch = master