“tag git” Réponses codées

git ajouter la balise

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

Tag git et relasase

Push tag 

git push --tag
florinrelea

git voir les balises

$ git tag -l -n2
Dead Duck

git tag un commit précédent

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

Réponses similaires à “tag git”

Questions similaires à “tag git”

Plus de réponses similaires à “tag git” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code