X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;ds=inline;f=dot-files%2F_gitconfig;h=015551f0e0fdc14f7928152a800f7ccca772a424;hb=945c1690dbbb33507b2fb06d75617d0ac5429ee4;hp=840e655419b2adb8db94488e80153efbd424f3e2;hpb=e6b82167f7bd95ded853c326d4efb90e622c3ad9;p=sugar.git diff --git a/dot-files/_gitconfig b/dot-files/_gitconfig index 840e655..015551f 100644 --- a/dot-files/_gitconfig +++ b/dot-files/_gitconfig @@ -6,8 +6,11 @@ ui = true [diff] renames = copies + compactionHeuristic = true [grep] lineNumber = true +[http] + sslVerify = false [log] decorate = full [alias] @@ -16,5 +19,12 @@ sh = show st = status 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