Created
December 11, 2013 19:24
-
-
Save AndrewRadev/7916730 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍