2020-11-10 11:17:06 +00:00
|
|
|
|
# git reflog
|
|
|
|
|
|
|
|
|
|
> Affiche un log des changements locaux comme HEAD, tags et branches.
|
2021-01-30 17:03:18 +00:00
|
|
|
|
> Plus d'informations : <https://git-scm.com/docs/git-reflog>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Afficher le reflog de HEAD :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git reflog`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Affiche le reflog d'une branche spécifique :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git reflog {{nom_de_branche}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Affiche les 5 dérniéres entrés dans le reflog :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git reflog -n {{5}}`
|