diff options
author | Linnnus <[email protected]> | 2025-04-11 02:04:59 +0000 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-04-11 02:04:59 +0000 |
commit | 86827a5de22335d34ff84286f01433af8d6d373d (patch) | |
tree | b01406d301865bd2d4b970af7012b64ec77391f2 /shared/home-manager/git/default.nix | |
parent | 7377ed63c19e7e57c7af0eb6fc7f2da4ae8facd2 (diff) |
Unset blame.ignoreRevsFile in git config
It was causing errors in repos that didn't have that file. I guess I
will have to manually configure it in each repo that DOES use that file.
Diffstat (limited to 'shared/home-manager/git/default.nix')
-rw-r--r-- | shared/home-manager/git/default.nix | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/shared/home-manager/git/default.nix b/shared/home-manager/git/default.nix index 748025d..cdd1561 100644 --- a/shared/home-manager/git/default.nix +++ b/shared/home-manager/git/default.nix @@ -27,11 +27,6 @@ in { # See: https://git-scm.com/book/en/v2/Git-Tools-Submodules push.recurseSubmodules = "check"; - # It seems like a de facto standard to have a file with this name in the - # project root containing all the commits that should be ignored when - # running `git blame`. - blame.ignoreRevsFile = ".git-blame-ignore-revs"; - credential = { "https://github.com/" = { username = "linnnus"; |