From b7a3312db0ae7779b66c77fdb9aa49c609f56703 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Sun, 5 Feb 2023 01:01:23 +0100 Subject: [PATCH] git-config: add fetch.prune true --- .gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitconfig b/.gitconfig index db14c5c..a71e159 100644 --- a/.gitconfig +++ b/.gitconfig @@ -17,6 +17,8 @@ push-u = "!git push -u origin $(git branch-name)" push-temp = "!git push -f origin $(git branch-name):refs/temp/$(git branch-name)" push-delete-temp = "!git push origin :refs/temp/$(git branch-name)" +[fetch] + prune = true [push] default = upstream autoSetupRemote = true