Commit 509c7e177412
Changed files (1)
home
common
shell
home/common/shell/git.nix
@@ -163,7 +163,9 @@ in
# };
fetch = {
prune = true;
- pruneTags = true;
+ # Keep git default (false): pruneTags=true causes tag churn in repos
+ # with multiple remotes sharing tags (one remote prunes, another re-adds).
+ pruneTags = false;
};
diff = {
algorithm = "histogram";