feat(defaults/git): remove unneeded configs

The credential helper set like this took a little system resources,
and should be generally configured on a case-by-case basis.

push.autoSetupRemote isn't particularly useful,
as git does tell you what you have to do anyway,
and using it can cause you to push to the wrong place.
This commit is contained in:
electria 2026-04-26 08:37:25 -07:00
commit d475051f88
Signed by: electria
SSH key fingerprint: SHA256:8LlB3ucPbBHqozqkhsNbaV5oG3SlzzqUj8FZDL6IPQs

View file

@ -28,9 +28,6 @@ in
config = { config = {
init.defaultBranch = "main"; init.defaultBranch = "main";
core.compression = 9; # max core.compression = 9; # max
credential.helper = "cache";
push.autoSetupRemote = true;
# otherwise git suggests changing the config # otherwise git suggests changing the config
# which two people I know have done without understanding # which two people I know have done without understanding