X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=dot-files%2F_gitconfig;h=4ec2ab0af7206b7f03054c97e90e8e9f4e88109c;hb=e2466ee55a87821c96804b010aa837f8d36df801;hp=c40f8d4e498a0827a008cdf4b82459ce4d8cf4a7;hpb=f3720aae9d315b543284fa538466bc606f45acfe;p=sugar.git diff --git a/dot-files/_gitconfig b/dot-files/_gitconfig index c40f8d4..4ec2ab0 100644 --- a/dot-files/_gitconfig +++ b/dot-files/_gitconfig @@ -8,6 +8,8 @@ renames = copies [grep] lineNumber = true +[http] + sslVerify = false [log] decorate = full [alias] @@ -15,4 +17,11 @@ 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