git-verify-commit

This commit is contained in:
Christoph J. Scherr 2024-09-05 10:50:10 +02:00
parent ac2076fc03
commit ba3b2ac1c9
1 changed files with 10 additions and 0 deletions

10
.zshrc
View File

@ -82,6 +82,16 @@ if __name__ == \"__main__\":
function countlines() {
find . -type f -name "$1" -exec wc -l {} \; | awk '{print $0} {total += $1} END {print "Total lines:", total}'
}
function git-verify-commit () {
git verify-commit $1
ret=$?
if [ $ret -ne 0 ]; then
echo "Commit is not signed."
else
echo "OK"
fi
return $ret
}
### ---- zsh options -------------------------------------
setopt autocd