You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to add a flag to show all stashes in the graph. A way to do it right now is git-foresta $(git reflog show --format="%h" stash). git reflog show --format="%h" stash list all stashes hashes, passing it as parameters to git-foresta which makes it display them. But being able to do this with a flag would be easier. I currently use an alias to do it.
The text was updated successfully, but these errors were encountered:
For what it's worth, vim-flog has this out-of-the-box. As of v2, vim-flog has it's own implementation rather than using git-foresta; you could ask about this in an issue in his repo if you want it in git-foresta. It looks like this:
It would be nice to add a flag to show all stashes in the graph. A way to do it right now is
git-foresta $(git reflog show --format="%h" stash)
.git reflog show --format="%h" stash
list all stashes hashes, passing it as parameters to git-foresta which makes it display them. But being able to do this with a flag would be easier. I currently use an alias to do it.The text was updated successfully, but these errors were encountered: