Skip to content

Instantly share code, notes, and snippets.

@danielpereirabp
Created August 17, 2015 20:00
Show Gist options
  • Save danielpereirabp/e03b56508101fc32683d to your computer and use it in GitHub Desktop.
Save danielpereirabp/e03b56508101fc32683d to your computer and use it in GitHub Desktop.
Git - Tags
git tag 0.1.0 (criando tag localmente)
git tag -l (listando tags localmente)
git push origin master --tags (adicionando tags no repositório remoto)
git tag -d 0.1.0 (removendo tag localmente)
git push origin :refs/tags/0.1.0 (removendo tag no repositório remoto)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment