I have had a dirty state in my project, which I did not want to commit. I did a git stash, to save it for later. Afterwards I continued and did some commits. The project now is in detached HEAD mode.
Now, I do not care about the stashed changes anymore. How can be the current last commit be made to the new master?
You can get rid of an unneeded stash with
git stash drop [stash-id]
(default is the latest stash, see all withgit stash list
).You can go back to master by
git checkout master
, but note that this may discard changes in your working directory.