diff options
author | Tristan Williams <tgwil@tgwil.net> | 2024-10-13 13:32:38 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2024-10-13 13:32:38 -0400 |
commit | d0a0ae63de3a5460c7570f3540297950fbd0b692 (patch) | |
tree | 4c2cab9ebf91a3fedb8ddedc6ac1a8b54e6032c6 /home/.gitconfig | |
parent | Give user options for directories similar to files (diff) | |
download | dotfiles.core-d0a0ae63de3a5460c7570f3540297950fbd0b692.tar.gz dotfiles.core-d0a0ae63de3a5460c7570f3540297950fbd0b692.tar.bz2 dotfiles.core-d0a0ae63de3a5460c7570f3540297950fbd0b692.zip |
Add git configuration
Diffstat (limited to 'home/.gitconfig')
-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 = * | ||