I have stashed some changes java changes using git Stash save "mystash". I had some changes i saved to a word file from a month ago. The code has been updated by others many times since then. How did i get these stashed changes ? i cut and paste entire file content from the word doc into eclipse file and i saved them. Now i want to merge these changes LOCALLY with whats truly on the git server. So i dont want anyone to see my changes yet i just want to merge it locally with whats on the server.
I tried to apply my stash and then do a git pull but it says one of my files has a conflict and i should resolve it first. I also tried after unstashing to do a git checkout . but i got the following warning:
error: path 'src/com/myfile.java' is unmerged
so to summarize what i want to do is take my changes that i saved last month and merge them with the current code base but LOCALLY. i dont want anyone else to be able to see these changes yet because i have to test the code first after such a huge merge. After i resolve the merge conflicts i want to stash these changes again so i can work on other tasks.