fix(git): deactivate global blame ignore file in favor of per-directory setup

This commit is contained in:
Pierre Martin
2024-06-21 05:33:00 +02:00
parent 1c7c8cbf55
commit d4e5336fac

View File

@@ -49,7 +49,9 @@
push.autoSetupRemote = true; push.autoSetupRemote = true;
# see https://michaelheap.com/git-ignore-rev/ # see https://michaelheap.com/git-ignore-rev/
blame.ignoreRevsFile = ".git-blame-ignore-revs"; # Not activated globally because it throws errors if the file is not present.
# Enable it in a specific repository if needed.
# blame.ignoreRevsFile = ".git-blame-ignore-revs";
# see https://adamj.eu/tech/2022/10/15/how-to-rebase-stacked-git-branches/ # see https://adamj.eu/tech/2022/10/15/how-to-rebase-stacked-git-branches/
rebase.updateRefs = true; rebase.updateRefs = true;