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