“tag git” Respostas de código

Git Adicionar tag

git tag -a v1.2 
git push origin v1.2
Calm Caracal

tag git e reasease

Push tag 

git push --tag
florinrelea

git veja tags

$ git tag -l -n2
Dead Duck

tag git um compromisso anterior

git tag -a v1.2 9fceb02 -m "Message here"
Garb

tag git

#To Create a tag on your current branch:
git tag <tagname>
#To include a description with your tag, add -a to create an annotated tag:
git tag <tagname> -a
#To push tags:
git push origin --tags
#To push a signle tag:
git push origin <tag>
Mushy Mallard

tag git

#list tags
$ git tag
v1.0
v2.0
Flavio Moreira

Respostas semelhantes a “tag git”

Perguntas semelhantes a “tag git”

Mais respostas relacionadas para “tag git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código