summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-10-31 18:26:24 -0400
committerGalen Guyer <galen@galenguyer.com>2022-10-31 18:26:24 -0400
commit7869b408e62a1c6e022fac4899fc541abe530c1f (patch)
treeeca4149b97fa7e6c362e37765d898300290d4344
parent6c4022028dcf8e316aa30cfa1b29eb2adee83b6d (diff)
gitconfig updates
-rw-r--r--modules/40-git/gitconfig11
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/40-git/gitconfig b/modules/40-git/gitconfig
index 2a66c5e..18743ad 100644
--- a/modules/40-git/gitconfig
+++ b/modules/40-git/gitconfig
@@ -5,10 +5,19 @@
[gpg]
program = gpg
[commit]
- gpgsign = true
+ gpgsign = true
[pull]
rebase = true
[alias]
lg = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
[push]
autoSetupRemote = true
+[blame]
+ ignoreRevsFile = .git-blame-ignore-revs
+[filter "lfs"]
+ process = git-lfs filter-process
+ required = true
+ clean = git-lfs clean -- %f
+ smudge = git-lfs smudge -- %f
+[lfs]
+ url = "https://lfs.galenguyer.com"