Skip to content

Instantly share code, notes, and snippets.

@josefnpat
Created August 23, 2014 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josefnpat/b683ca9f43645b0158d2 to your computer and use it in GitHub Desktop.
Save josefnpat/b683ca9f43645b0158d2 to your computer and use it in GitHub Desktop.
hg/git alias
#!/bin/sh
if git rev-parse --git-dir > /dev/null 2>&1; then
git "$@"
elif hg verify 1>/dev/null 2>/dev/null; then
hg "$@"
else
echo "This is not a repo, you dumb fuck."
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment