Significant updates to git config

This commit is contained in:
Greg Hellings
2025-03-28 09:54:41 -05:00
parent a12688bf81
commit 349fec35b0
+17
View File
@@ -24,9 +24,26 @@
".bazelproject" ".bazelproject"
]; ];
extraConfig = { extraConfig = {
branch.sort = "-committerdate";
column.ui = "auto";
commit.verbose = "true";
diff = {
algorithm = "histogram";
colorMoved = "plain";
mnemonicPrefix = "true";
renames = "true";
};
init.defaultBranch = "main"; init.defaultBranch = "main";
push.default = "upstream"; push.default = "upstream";
pull.rebase = "false"; pull.rebase = "false";
rebase = {
autoSquash = "true";
updateRefs = "true";
};
rerere = {
autoupdate = "true";
enabled = "true";
};
tag.sort = "version:refname"; tag.sort = "version:refname";
}; };
}; };