Hello,
I'm a bit on panic mode at the moment. This is what happened: I just got a blue screen on my PC right when I was doing a commit into a local branch.
After restarting the PC I openend SourceTree and saw that I was checked out at the master branch instead of the branch in which I was working before the crash. What's more, the branch has disappeared completely and I have no local history at all.
The good news is that it looks like all the changes that I had made are still there. I see all the files in "Staged changes", but I need to stash them before I can switch to another branch (as I don't want to commit to master yet) and I'm getting the following error:
git -c diff.mnemonicprefix=false -c core.quotepath=false stash save AfterCrash fatal: bad revision 'HEAD' fatal: bad revision 'HEAD' fatal: Needed a single revision You do not have the initial commit yet Completed with errors, see above.
Well in the end I decided to start from scratch and clone the remote repo again.
Then I replaced the files by mine and now I can confirm that all the modifications are there. That was close :-D
@mention Do you have a system restore point for your local system and everything on it? What is exactly wrong with your workspace and what exactly happened with your commit? The system restore will have everything you had before, including the branch you couldn't fing and all of your history that was erased. Try that. It's easier than having to reset the whole thing. A lot of people had this prbloem with sourcetree. But, see if it works. I hope I was able to help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I too get bluescreens on commits, Not always, but often. Stopped using the windows version and do it on the Mac version that seems to work fine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could solve that error by applying the following command:
git symbolic-ref HEAD refs/heads/name-of-the-branch-you-were-on
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.