I have made so many changes in so many files in my local git repo.
But when I switched the branch using mac Git-Client without committing changes a warning window came saying there are uncommitted changes so its going to abort the operation.
I thought I couldn't switch to other branch without committing. But what happened is all my changes are simply gone away.
I saw the status using git status
terminal and its response was
On branch branchname Your branch is up-to-date with 'origin/branchname'.
nothing to commit, working directory clean
I tried to know if Git-Client stores it as stash using git stash
and the response was
No local changes to save
I couldn't recover the uncommitted changes of that branch!