tldr/pages.fr/common/git-show-ref.md

21 lines
452 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git show-ref
> Commande Git pour lister les références.
> Plus d'informations : <https://git-scm.com/docs/git-show-ref>.
- Affiche toutes les références dans le dépot :
`git show-ref`
- Affiche seulement les références des tétes de branches :
`git show-ref --heads`
- Affiche seulement les références de tags :
`git show-ref --tags`
- Verifier l'existence d'une référence :
`git show-ref --verify {{chemin/vers/reference}}`