Search code examples
gitgit-reflog

How to navigate git reflog in reverse order?


For git log, we have git log --reverse to navigate logs in the reverse order, but I tried git reflog --reverse, it returns fatal: options '--reverse' and '--walk-reflogs' cannot be used together. Is there any way to navigate git reflog in reverse order?


Solution

  • There's an easier way, when using git reflog, type G to see the earliest entries, and type k to go up from there:
    enter image description here