I am trying to import a project that has grown over the years in cvs. It has several branches for releasing patches, tags and heads. This is the command I use:
git cvsimport -r cvs -k -d :pserver:<USERNAME>@cvs:/home/cvsroot <MODULNAME>
It worked great a few weeks ago. A few days ago, a branch was created for the current version, where people are still committing, while others are already working on their heads for the next stage. This branch will later be merged into the head.
Instantly, the process does not work with the following messages below:
fatal: Needed a single revision
fatal: Can merge only exactly one commit into empty head
Could not merge master into the current branch.
What is the reason? How can I handle this?
source
share