Skip to content

Instantly share code, notes, and snippets.

@AndrewRadev
Created December 11, 2013 19:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewRadev/7916730 to your computer and use it in GitHub Desktop.
Save AndrewRadev/7916730 to your computer and use it in GitHub Desktop.
#! /bin/sh
# If you often mistype "git add", you could alias "ad=add". Or, you could use
# this script.
random=$(( RANDOM % 3 ));
case $random in
0) echo "Buy Git! Now with 20% more rebase!";;
1) echo "Merge, branch, AND rebase? But wait, there's more!";;
2) echo "Order in the next 10 minutes and you get a free set of kitchen knives!";;
esac
@asaaki
Copy link

asaaki commented Dec 12, 2013

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment