I have been working on some code, which I use git to manage. Earlier, I used commit to save a version of my code that worked. I later decided to redo the code, since it needed some new features and was designed poorly. After I got it working, I did another git commit. After doing git log, I saw I was not on any branch. So, I did “git checkout master”. This brought be back to the version of my old code, with git log now showing my latest commit. This was A LOT of work, so I wanted to know if there was any way to undo what I did, and get back my latest code. Thanks in advance for your help.
Share
Check the
git reflogand find your commit.Safest thing is to create a branch at the “lost” commit, then check if everything is dandy using
gitkorgit log -pThis new branch can then be merged, rebased on top of master, commits of it cherry-picked, etc. There are many possibilities in git to shoot yourself in the foot but also several more ways to re-attach that foot (possibly to your arms).
If you haven’t done any new commits on master, you can simply merge the commit in question, which will be resolved as a fast-forward merge by git:
If you don’t care about any new commits on master and you simply want to reset master branch to that lost commit, use git reset. To not lose any changes, stash changes to your working copy first (
git stash save)The next time you discover that you aren’t on any branch, use
git branch newbranchorgit checkout -b newbranch