Unoffical command line client for http://whatthecommit.com
Ruby
Switch branches/tags
Latest commit 3ce2b10 Apr 10, 2015 @lwe lwe unh (© whatthecommit.com)

README.md

whatthecommit

An unoffical command client to fetch a random and silly commit message from whatthecommit.com.

For the sources of whatthecommit.com see https://github.com/ngerakines/commitment

FAQ

Is it useful?

Yeah, sure, I mean it's perfect for those cases where you haven't committed a change in ages and feel too important to use git add -i, so git commit -am "$(whatthecommit)" to the rescue 😉

How do I install it?

To get up and running as fast as possbile run

curl -L http://github.com/lwe/whatthecommit/raw/master/whatthecommit > /usr/local/bin/whatthecommit && chmod 0755 !#:3

Are there any options?

Sure, check whatthecommit -h for usage and options.

Do I need this? / Alternatives

No, whatthecommit.com provides since some time a plain text interface at http://whatthecommit.com/index.txt - so a good alternative would be to create something like:

# .bashrc / .zshrc or whatever
function whatthecommit() {
  curl whatthecommit.com/index.txt
}

...or how about a git alias?

# From https://github.com/ngerakines/commitment/issues/69#issuecomment-91053061
git config --global alias.yolo '!git add -A && git commit -m "$(curl -s whatthecommit.com/index.txt)"'

Thanks to m13253 for the index.txt trick.