git: enable gpg signing and add more aliases
All checks were successful
continuous-integration/drone/push Build is passing

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

View file

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