Skip to content

Commit

Permalink
set more git config options
Browse files Browse the repository at this point in the history
Signed-off-by: David Wood <david@davidtw.co>
  • Loading branch information
davidtwco committed Jan 17, 2024
1 parent f0ee52d commit 0bbfa97
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion home/configs/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ in
# See rust-lang/cargo#11857.
manyFiles = false;
};
fetch.writeCommitGraph = true;
init.defaultBranch = "main";
merge.conflictStyle = "zdiff3";
pull.rebase = true;
Expand All @@ -75,7 +76,10 @@ in
status.showStash = true;
stash.showPatch = true;
submodule.fetchJobs = 4;
rebase.autosquash = true;
rebase = {
autosquash = true;
updateRefs = true;
};
user.useConfigOnly = true;
};
ignores = [
Expand Down

0 comments on commit 0bbfa97

Please sign in to comment.