Skip to content

Commit

Permalink
git: sign commits by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tomodachi94 committed May 27, 2024
1 parent a81fb69 commit 8dc76a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion home/common/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@
insteadOf = "git://github.com";
};
};
# Show full diff when running `git commit`
commit = {
# Show full diff when running `git commit`
verbose = true;
# Sign commits automatically
gpgsign = true;
};
# Push to branch origin/whatever_my_current_branch_is if no upstream branch is set
push = {
Expand Down

0 comments on commit 8dc76a3

Please sign in to comment.