git: enable gpg signing and add more aliases
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Sijmen 2022-08-08 14:25:57 +02:00
parent ae90629639
commit 954448ea8c
Signed by: vijfhoek
GPG Key ID: DAF7821E067D9C48
1 changed files with 7 additions and 0 deletions

View File

@ -93,6 +93,8 @@
gla = "git pull --autostash"; gla = "git pull --autostash";
gp = "git push"; gp = "git push";
gpf = "git push --force-with-lease"; gpf = "git push --force-with-lease";
gr = "git reset";
grs = "git reset --soft";
tigs = "tig status"; tigs = "tig status";
}; };
}; };
@ -155,6 +157,11 @@
userName = "Sijmen"; userName = "Sijmen";
userEmail = "me@sijman.nl"; userEmail = "me@sijman.nl";
signing = {
signByDefault = true;
key = "0xDAF7821E067D9C48";
};
extraConfig = { extraConfig = {
fetch.prune = true; fetch.prune = true;
init.defaultBranch = "main"; init.defaultBranch = "main";