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

17 lines
356 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# 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 dernières entrées dans le reflog :
`git reflog -n {{5}}`