I already have stashed my changes and I can see them when I use git stash list. I did git pull --rebase upstream master successfully. (It had conflict in FileA, I resolved it.) Now I want to get my latest stashed changes at stash@{0}:. So I use git stash apply 0. Its gives me message Merge conflict in .gitignore. I fixed / merged/ resolved conflict in .gitignore.
Then did git stash apply 0, I received same error Merge conflict in .gitignore. This time I again fixed .gitignore, and I committed this .gitignore file hoping it would take care. ( I did look up on stakcoverflow and found exact same issue faced by someone and took steps).
Then I again did git stash apply 0 and same error again in loop. How to get past this error.
After git stash apply , I don't see all my changes that are supposed to be applied from the stash. I just get the conflict message for .gitignore but don't see other changes that I would like to see.