ALL,
I'm trying to resolve a following situation.
I am developing a program whose code is on Git. At one point of time I needed to update the code on Mac. The pull failed because there was an un-committed changes. One of the file which was un-committed was the Xcode file.
I tried to commit the file and pull again, but unfortunately I got a conflict. I tried to resolve the conflict with the vi and editing by hand, but I guess the Xcode internal files are not meant to be edited by hand.
Now I can go back and checkout the last known commit which will obviously won't have a latest source.
So after I do:
git checkout <last_known_commit>
what do I do in order to just bring the soure code in?
Or maybe I can reset the file from the master?
Please help.
Thank you.