Years ago I created a public repository of a SourceForge project on Github. Back then, the project only supported CVS, so I used git cvs to periodically sync my repository with the original.
There have not been any commits to the CVS repository for a long time, and now I found out that they moved to git as well (albeit on Sourceforge, not Github).
My question is now: How do I merge the changes in the SF git repository into my repository?
What I tried so far:
- Add new remote repository 'upstream' pointing to the SF git repo
git fetch upstream
git checkout master
git merge upstream/master
The last step works without error, but git status
tells me that master & origin/master have diverged. Doing a git pull
now results on lots and lots of conflicts ("CONFLICT (add/add)").