Skip to content

Commit

Permalink
feat(git): better rebase defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Azd325 committed Mar 4, 2025
1 parent b0e24bf commit 5e6b3e3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion module/home-manager/programs/git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@
autoSetupRemote = true;
followTags = true;
};
rebase = { autoStash = true; };
rebase = {
autoSquash = true;
autoStash = true;
updateRefs = true;
};
rerere = {
enabled = true;
autoupdate = true;
Expand Down

0 comments on commit 5e6b3e3

Please sign in to comment.