]> code.delx.au - dotfiles/blobdiff - .gitconfig
bash: simplify EDITOR for non-emacs systems
[dotfiles] / .gitconfig
index 2b1c96748cbfcb503609a1f3669d2575eedc3546..a128061237e87a8a3468a38a47dcaad91924deff 100644 (file)
@@ -1,9 +1,6 @@
-[user]
-       name = James Bunton
-       email = jamesbunton@delx.net.au
 [core]
-       pager = less
-       excludesfile = ~/.gitignore_global
+       hooksPath = ~/.git-hooks-global
+       excludesfile = ~/.gitignore-global
 [pager]
        branch = less -F
        tag = less -F
@@ -22,6 +19,8 @@
        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
@@ -41,3 +40,4 @@
        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
+       serve = daemon --reuseaddr --base-path=. --export-all --verbose