I had 2 branches. I recently did git stash
on first branch and then moved to different branch. I made few changes in the second branch. And i wanted to move to the first branch so I did git stash
again in my second branch and moved to first branch.
But after i did git stash pop
it merged few files and i lost all my changes after the previous commit. The got the following message after git stash pop
git stash pop
Auto-merging src/settings.jsx
CONFLICT (content): Merge conflict in src/settings.jsx
Auto-merging public/css/index.css
I expect to recover all the files that i lost after git stash pop
I'm new to git. Any help would be mch appreciated. Thanks in advance.