Skip to content

Instantly share code, notes, and snippets.

@loa
Created July 17, 2015 09:06
Show Gist options
  • Save loa/48ecc1eb4f343d167b94 to your computer and use it in GitHub Desktop.
Save loa/48ecc1eb4f343d167b94 to your computer and use it in GitHub Desktop.
Bash verify Git Head is not tagged release
#!/bin/bash
git tag --contains HEAD | grep -q "v.*" && {
echo "HEAD is already tagged release."
} || {
echo "HEAD is not a tagged release."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment