I tried to Merge a Branch let's say branch-good into Master branch as branch-good is the one upto date with changes so whilst on branch-good I did following
git merge --strategy=ours master
git checkout master
git merge branch-good
Now after I made my last commit i changed two files that i forgot to commit before performing above task. This has cause merge conflict and now i'm not able to got back to the branch-good so i can add those files to my last commit as git gives me Cannot save the current index or You need to resolve your current index first errors. How to get out of this ?