2020-11-10 11:17:06 +00:00
|
|
|
|
# git rev-parse
|
|
|
|
|
|
|
|
|
|
> Afficher les métadonnées liées à des révisions spécifiques.
|
2021-01-30 17:03:18 +00:00
|
|
|
|
> Plus d'informations : <https://git-scm.com/docs/git-rev-parse>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Afficher le hash de commit de la branche courrante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git rev-parse {{nom_de_branche}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Affiche le nom de la branche courrante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git rev-parse --abbrev-ref {{HEAD}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Obtenir le chamin absolu du repertoire racine :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git rev-parse --show-toplevel`
|