Sign all commits

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2021-10-14 16:30:23 +01:00
parent 9247ec3937
commit c72372296c
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
1 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,9 @@ git() {
if [ "$1" = "take" ]; then
/usr/local/bin/git clone $2
cd $(basename $2 | sed 's/\.git$//')
elif [ "$1" = "commit" ]; then
shift
/usr/local/bin/git commit -s $@
else
/usr/local/bin/git $@
fi