Hey all, I'm back, and still a beginner at using Git.
So I created my own fork. I cloned it. I updated my fork, committed, and pushed. But then the main fork updated, and I tried to update my own fork with:
$ cd repo-name
$ git remote add upstream git://github.com/username/repo-name.git
$ git fetch upstream
$ git merge upstream/master
And everything works fine until the end. It says that There's some problem with a file and auto-merging doesn't work. It tells me to fix it myself and re-merge. So I actually went to the repository on github of the main fork and copied all the code of the new file into the file on my fork, and tried to merge again. Then, git gives me this error:
fatal: 'merge' is not possible because you have unmerged files. Please, fix them up in the work tree, and then use 'git add/rm ' as appropriate to mark resolution and make a commit, or use 'git commit -a'.
So... is there some bash argument I'm leaving out? Am I doing something stupid? What does it mean by "unmerged files?" Isn't the whole point of merging to merge files? Do I have to commit my changes before I merge? (I'll try that right now...)
Thanks for any help you can give.
OK, thank you everyone for the info. :) Now time to figure out how to git Git to work with my IDE...