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
git checkout allows the user to switch back to the previous ref using a shorthand of git checkout - (docs). It can be implemented by rewriting the revision to @{-1}.
The text was updated successfully, but these errors were encountered:
One wrinkle here: the fast-forwarding behavior of gg update causes the reflog to have a detached head for an entry in the reflog. Perhaps we need to find a way to remove the reflog entry?
git checkout
allows the user to switch back to the previous ref using a shorthand ofgit checkout -
(docs). It can be implemented by rewriting the revision to@{-1}
.The text was updated successfully, but these errors were encountered: