git/home/.githooks/post-commit

12 lines
245 B
Plaintext
Raw Normal View History

2016-10-02 21:44:37 -04:00
#!/usr/bin/env zsh
chmod a-x $0
msg="$(git log -n 1 --pretty=format:'%s%n%n%b')"
guilt="$(git guilt HEAD~1 HEAD)"
what="$(curl http://whatthecommit.com/index.txt)"
git commit --no-verify --amend -m $msg$'\n\n'$guilt$'\n\n'$what
chmod a+x $0