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-05-01 17:49:31 +01:00
|
|
|
|
- Afficher le hash de commit de la branche courante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git rev-parse {{nom_de_branche}}`
|
|
|
|
|
|
2021-05-01 17:49:31 +01:00
|
|
|
|
- Affiche le nom de la branche courante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git rev-parse --abbrev-ref {{HEAD}}`
|
|
|
|
|
|
2021-05-01 17:49:31 +01:00
|
|
|
|
- Obtenir le chemin absolu du répertoire racine :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git rev-parse --show-toplevel`
|