4 #email = ian@iankelling.org
6 # Always use the git lg alias instead of git log. It's too easy to get
7 # confused by not seeing branches in git log output.
8 lg = log --graph --decorate
12 lol = log --graph --decorate --pretty=oneline --abbrev-commit --all
16 excludesfile = ~/.gitignore_global
20 # new option, but not available yet on debian wheezy
24 # based on ghc advice,
25 # https://ghc.haskell.org/trac/ghc/wiki/Building/GettingTheSources
27 ignoreSubmodules = dirty
29 # gitinspector complained
41 # for hooks. http://stackoverflow.com/questions/2293498/git-commit-hooks-global-settings
43 templatedir = ~/.git_template
48 # This seemed like a good idea, but it broke interactive rebase, so disabled.
49 # for format-patch, use --base=auto. This means we need to do
50 # git branch --set-upstream-to, but that should be done automatically
51 # based on other settings.
54 # Disabled as this was to be used with useAutoBase, which didn't work as expected.
55 # sets local branches to have the same remote tracking branch.
56 # This allows the useAutoBase setting to work without having to
57 # setup the branch specially with
58 # git branch --set-upstream-to origin/my_branch
59 # or git checkout -b my-branch origin/whatever
60 # autoSetupMerge = always
62 # git pull always does rebase by default
63 autoSetupRebase = always