Update Git config (#111)

This commit is contained in:
Patrick Stevens
2025-03-07 21:47:32 +00:00
committed by GitHub
parent 58c06a2a70
commit 2a371ff957

View File

@@ -76,6 +76,14 @@
push = { push = {
default = "current"; default = "current";
autoSetupRemote = true; autoSetupRemote = true;
followTags = true;
};
fetch = {
prune = true;
all = true;
};
help = {
autocorrect = "prompt";
}; };
pull = { pull = {
rebase = false; rebase = false;
@@ -83,6 +91,15 @@
init = { init = {
defaultBranch = "main"; defaultBranch = "main";
}; };
branch = {
sort = "-committerdate";
};
column = {
ui = "auto";
};
tag = {
sort = "version:refname";
};
advice = { advice = {
addIgnoredFile = false; addIgnoredFile = false;
}; };
@@ -100,6 +117,8 @@
}; };
diff = { diff = {
colorMoved = "default"; colorMoved = "default";
algorithm = "histogram";
renames = true;
}; };
"protocol.file" = { "protocol.file" = {
allow = "always"; allow = "always";