From c83c793a1a8ffe957e8d58c917508d5113c3243b Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Sun, 9 Jul 2023 00:03:44 +0200 Subject: [PATCH] git: Disable fetch.pruneTags This leads to problems in repositories with multiple remotes that do not share the same tags. A fetch --all will then fetch and delete a tag at the same time. Tags are also way less often deleted in my experience so that an automatic pruning is not necessary. --- .config/git/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/git/config b/.config/git/config index f4048fa..4bdc875 100644 --- a/.config/git/config +++ b/.config/git/config @@ -54,7 +54,7 @@ [fetch] output = compact prune = true - pruneTags = true + pruneTags = false parallel = 0 [gpg] program = gpg.loopback