diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/.gitconfig | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/home/.gitconfig b/home/.gitconfig new file mode 100644 index 0000000..17ace36 --- /dev/null +++ b/home/.gitconfig | |||
@@ -0,0 +1,26 @@ | |||
1 | [user] | ||
2 | name = Tristan Williams | ||
3 | email = tgwil@tgwil.net | ||
4 | username = tgwil | ||
5 | [include] | ||
6 | # .gitconfig.local used for GPG secret only | ||
7 | path = ~/.gitconfig.local | ||
8 | [core] | ||
9 | editor = emacsclient | ||
10 | autocrlf = input | ||
11 | [commit] | ||
12 | gpgsign = true | ||
13 | verbose = true | ||
14 | [init] | ||
15 | defaultBranch = stable | ||
16 | [merge] | ||
17 | conflictstyle = zdiff3 | ||
18 | [diff] | ||
19 | algorithm = histogram | ||
20 | context = 5 | ||
21 | [log] | ||
22 | date = iso | ||
23 | [gpg] | ||
24 | program = gpg2 | ||
25 | [safe] | ||
26 | directory = * | ||