X-Git-Url: https://code.delx.au/dotfiles/blobdiff_plain/6ba601431198a67d68ab0c3fe6828b8a76baf734..a2a038ea66a84da173b6cfb6a8cd13109166ca48:/.gitconfig diff --git a/.gitconfig b/.gitconfig index 87680ab..4c0abc3 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,15 +1,27 @@ -[user] - name = James Bunton - email = jamesbunton@delx.net.au -[color] - ui = always +[init] + templatedir = ~/.git-template [core] - pager = less -+F -+X - editor = vim + excludesfile = ~/.gitignore_global +[pager] + branch = less -F + tag = less -F +[color] + ui = auto [log] decorate = full +[diff] + renamelimit = 10000 + renames = copies + context = 5 + algorithm = minimal [push] default = upstream +[merge] + defaultToUpstream = true +[transfer] + fsckObjects = true +[fetch "fsck"] + zeroPaddedFileMode = warn [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 @@ -21,3 +33,11 @@ dicw = diff --cached --color-words ff = merge --ff-only ffpull = pull --ff-only + lso = ls-files -X .gitignore -o + 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