feat(git): always fetch all and prune

This commit is contained in:
Michael Mandl 2025-02-26 08:21:35 +01:00
parent 555d229cf1
commit f73891c335
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
2 changed files with 9 additions and 4 deletions

View file

@ -37,9 +37,6 @@
column.ui = "auto";
fetch.parallel = 8;
fetch.writeCommitGraph = true;
fetch.recurseSubmodules = true;
commit.verbose = true;
diff = {
@ -50,6 +47,15 @@
renames = true;
};
fetch = {
all = true;
parallel = 8;
prune = true;
pruneTags = true;
recurseSubmodules = true;
writeCommitGraph = true;
};
format.pretty = "format:%C(yellow)%h %Cblue%>(12)%ad %C(red)%G? %Cgreen%<(7,trunc)%aN%Cred%d %Creset%s";
init.defaultBranch = "main";

View file

@ -7,7 +7,6 @@
gs = "git status";
gd = "git diff";
gf = "git fetch";
gfp = "git fetch --prune";
k = "kubectl";
ww = "nvim -c VimwikiIndex";
};