2020-11-10 11:17:06 +00:00
|
|
|
# git rev-parse
|
|
|
|
|
|
|
|
> Afficher les métadonnées liées à des révisions spécifiques.
|
2021-10-07 08:37:39 +01:00
|
|
|
> Plus d'informations : <https://git-scm.com/docs/git-rev-parse>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Afficher l'empreinte du commit de la branche courante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git rev-parse {{nom_de_branche}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Affiche le nom de la branche courante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git rev-parse --abbrev-ref {{HEAD}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Obtenir le chemin absolu du répertoire racine :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git rev-parse --show-toplevel`
|