feat(git): set push.autoSetupRemote to true

This commit is contained in:
Oliver Davies 2023-10-18 22:44:06 +02:00
parent 0531c2ffdd
commit c9af4cf4c9

View file

@ -218,15 +218,18 @@ in
help.autocorrect = "1";
init.defaultBranch = "main";
merge.ff = "only";
rebase = {
autosquash = true;
autostash = true;
push = {
autoSetupRemote = true;
default = "upstream";
};
push.default = "upstream";
pull = {
ff = "only";
rebase = true;
};
rebase = {
autosquash = true;
autostash = true;
};
};
};