summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"