use merge instead of rebase

This commit is contained in:
christoph.hollizeck 2024-03-27 14:42:41 +01:00
parent 0c477fac7e
commit 6f81c7c6e4
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ in {
lfs = enabled; lfs = enabled;
extraConfig = { extraConfig = {
init = {defaultBranch = "main";}; init = {defaultBranch = "main";};
pull = {rebase = true;}; pull = {rebase = false;};
push = {autoSetupRemote = true;}; push = {autoSetupRemote = true;};
}; };
}; };

View file

@ -27,7 +27,7 @@ in {
lfs.enable = true; lfs.enable = true;
config = { config = {
init = {defaultBranch = "main";}; init = {defaultBranch = "main";};
pull = {rebase = true;}; pull = {rebase = false;};
push = {autoSetupRemote = true;}; push = {autoSetupRemote = true;};
}; };
}; };