📚 Cheatsheet

Une collection organisée de snippets de code pour accélérer votre développement. Parcourez, recherchez et copiez en un clic.

Snippets 6

Retour
Créer un tag annoté
Intermédiaire
git tag -a v1.0.0 -m "Version 1.0.0"
Créer un tag léger
Facile
git tag v1.0.0
Lister les tags
Facile
git tag
Pousser les tags vers le distant
Intermédiaire
git push --tags
Supprimer un tag distant
Avancé
git push origin :refs/tags/v1.0.0
Supprimer un tag local
Facile
git tag -d v1.0.0