diff options
author | Benjamin Morrison <ben@gbmor.dev> | 2020-07-02 01:13:37 -0400 |
---|---|---|
committer | Benjamin Morrison <ben@gbmor.dev> | 2020-07-02 01:15:30 -0400 |
commit | b880790bb83d0db3e1dd93737a7cec07f36f158e (patch) | |
tree | ceba1f78498b1ee80dcce90f6866639dceb59a84 /.config/git/config | |
parent | 842846ef8b7bfec4a09dd5ad24d0cc87cd01c3e3 (diff) | |
download | dogfiles-b880790bb83d0db3e1dd93737a7cec07f36f158e.tar.gz |
added template for git init
Diffstat (limited to '.config/git/config')
-rw-r--r-- | .config/git/config | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/.config/git/config b/.config/git/config index 1c9218b..4816e6b 100644 --- a/.config/git/config +++ b/.config/git/config @@ -1,21 +1,22 @@ [sendemail] - smtpEncryption = tls - smtpServer = smtp.fastmail.com - smtpUser = ben@gbmor.dev - smtpServerPort = 587 - annotate = yes + smtpEncryption = tls + smtpServer = smtp.fastmail.com + smtpUser = ben@gbmor.dev + smtpServerPort = 587 + annotate = yes [user] - name = "Ben Morrison" + name = "Benjamin Morrison" email = ben@gbmor.dev signingkey = EAB272409CD12FF0 - +[init] + templatedir = /home/ahriman/.config/git/template.git [commit] - gpgsign = true + gpgsign = true [hub] - protocol = ssh + protocol = ssh [sequence] - editor = interactive-rebase-tool + editor = interactive-rebase-tool [credential] - helper = cache --timeout 3600 + helper = cache --timeout 3600 [pull] - rebase = false + rebase = false |