tldr/pages.fr/common/git-reflog.md

17 lines
352 B
Markdown
Raw Normal View History

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