mirror of https://github.com/CrimsonTome/tldr.git
17 lines
356 B
Markdown
17 lines
356 B
Markdown
# git reflog
|
||
|
||
> Affiche un log des changements locaux comme HEAD, tags et branches.
|
||
> Plus d'informations : <https://git-scm.com/docs/git-reflog>.
|
||
|
||
- Afficher le reflog de HEAD :
|
||
|
||
`git reflog`
|
||
|
||
- Affiche le reflog d'une branche spécifique :
|
||
|
||
`git reflog {{nom_de_branche}}`
|
||
|
||
- Affiche les 5 dérniéres entrés dans le reflog :
|
||
|
||
`git reflog -n {{5}}`
|