.gitconfig: email = jan@jankratochvil.net
[nethome.git] / .gitconfig
1 [user]
2         name = Jan Kratochvil
3         email = jan@jankratochvil.net
4 [include]
5         path = .gitconfig.local
6 [init]
7         defaultBranch = master
8 [merge]
9         conflictstyle = diff3
10 [color]
11         ui = never
12 [pull]
13         ff = only
14 #       rebase = true
15
16 # ChangeLog merge attempt:
17 #[merge "git-merge-changelog"]
18 #       name = git-merge-changelog
19 #       driver = /usr/bin/git-merge-changelog %O %A %B
20 # ChangeLog merge attempt:
21 #[core]
22 #       attributesfile = ~/.gitattributes
23 # golang:
24 #[http]
25 #       cookiefile = /home/jkratoch/.gitcookies
26 [alias]
27         co = checkout
28         ci = commit
29         st = status
30         br = branch
31         hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
32 [pager]
33         branch = off
34 [branch]
35         sort = committerdate
36 # FIXME: It does not work:
37 #[blame]
38 #        ignoreRevsFile = ~/.gitconfig-ignoreblamecommit
39 [format]
40         signature =
41
42 # Big files cludge:
43 #[core]
44 #       compression=1
45 #       bigFileThreshold=100g
46 #[pack]
47 #       depth=2
48 #       window=2
49 #       threads=1