Top "Git-reflog" questions

For issues relating to the git-reflog command to manage information recorded in reflogs.

How can I move HEAD back to a previous location? (Detached head) & Undo commits

In Git, I was trying to do a squash commit by merging in another branch and then resetting HEAD to …

git git-checkout git-reset git-revert git-reflog
What's the difference between git reflog and log?

The man page says that log shows the commit logs and reflog manages reflog information. What exactly is reflog information …

git git-log git-reflog
Is there a way to cause git-reflog to show a date alongside each entry?

The git-reflog command doesn't by default show a date alongside each entry, which strikes me as a strange oversight; I …

git git-reflog reflog
Git reflog a specific branch?

Can I reflog a specific branch? git reflog shows all history on the repo. But I want to check the …

git git-reflog
GIT - Remove old reflog entries

After a lot of rebasing a repository to our latest needs our reflog is full of commits and orphan branches. …

git purge git-reflog