Commit Message Generator
whatthecommit.com
Commit Message Generator
1–4 of 4 posts
Re: Commit Message Generator
#2For git (should be easy transferable to other VCs):
git commit -m "$(curl -s http://whatthecommit.com/ | awk '/
/ {sub("
", ""); print }')"
Re: Commit Message Generator
#3For git (should be easy transferable to other VCs): git commit -m "$(curl -s http://whatthecommit.com/ | awk '/ / {sub(" ", ""); print }')"
This works too: git commit -m "$(curl -s http://whatthecommit.com/index.txt)
Re: Commit Message Generator
#4I don't get it. Why would you want a fake commit message?