X-Git-Url: https://code.delx.au/dotfiles/blobdiff_plain/45f585c8cb5bfcac8880c0ce069ded24285143aa..fa3c00e8c7773426e698bc704febd8e9d70484fd:/.gitconfig diff --git a/.gitconfig b/.gitconfig index de51fe7..694d7bb 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,18 +1,21 @@ [user] name = James Bunton email = jamesbunton@delx.net.au -[color] - ui = always [core] pager = less -+F -+X - editor = vim + excludesfile = ~/.gitignore +[color] + ui = auto [log] decorate = full + follow = true [diff] renamelimit = 10000 + renames = copies + context = 5 + algorithm = minimal [push] - # Set to tracking instead of upstream for backwards compatibility - default = tracking + default = upstream [alias] graphlog = log --graph --pretty=format:'%C(bold black)%h%Creset %C(bold red)%ad %C(bold blue)%s%Creset %C(bold yellow)%d%Creset %C(bold black)<%an>%Creset' --date=short ci = commit @@ -25,4 +28,10 @@ ff = merge --ff-only ffpull = pull --ff-only lso = ls-files -X .gitignore -o - newpush = !git push -u origin "$(git rev-parse --abbrev-ref HEAD)" + pushn = !git push origin --set-upstream "$(git rev-parse --abbrev-ref HEAD)":"$(git rev-parse --abbrev-ref HEAD)" + pushd = !git push origin --delete "$(git rev-parse --abbrev-ref HEAD)" + pushf = push --force-with-lease + cherry-pick = cherry-pick -x + branches-to-kill = !git branch --merged origin/master|grep -v master|xargs -n1 echo git branch -d + mergediff = !git checkout --quiet --detach HEAD && git merge --no-edit origin/master && git diff -C10 -M10 origin/master && git checkout --quiet - + expire-prune = !git reflog expire --expire=now --all && git gc --prune=now \ No newline at end of file