X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=dot-files%2F_gitconfig;h=33e376087718543cbe79f8225f77edddb3755882;hb=1c1eed23f4c49f1bb9deed9ad5759689a7086d16;hp=840e655419b2adb8db94488e80153efbd424f3e2;hpb=e6b82167f7bd95ded853c326d4efb90e622c3ad9;p=sugar.git diff --git a/dot-files/_gitconfig b/dot-files/_gitconfig index 840e655..33e3760 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,10 @@ 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