Skip to content

Instantly share code, notes, and snippets.

@mehulkar
Forked from dnf/git-shove
Created November 15, 2013 22:13
Show Gist options
  • Save mehulkar/7492553 to your computer and use it in GitHub Desktop.
Save mehulkar/7492553 to your computer and use it in GitHub Desktop.
#!/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