Created
November 15, 2013 21:50
-
-
Save dnf/7492249 to your computer and use it in GitHub Desktop.
Implementation of git shove we use at Medium
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 [ "master" = "$(git rev-parse --abbrev-ref HEAD)" ] ; then | |
echo "\033[1;31mYou may not shove master\033[0m" | |
exit 1; | |
fi | |
exec git push --force origin HEAD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment