I'm trying to import a cvs module into an existing git repo. I can get it to work properly if I import into a fresh repo, but when I try to import into the existing repo it seems determined to skip all the patchsets that are dated before the last commit to the branch that I've specified with -o. This is what I'm currently trying:
git cvsimport -v -p -x -o cvs -d <cvsroot> -k -u <module>
The end of the output consists of lines like this:
skip patchset 26: 1258578534 before 1259081502
If I drop the "-o cvs", it fails with:
Branch 'origin' does not exist.
Either use the correct '-o branch' option,
or import to a new repository.
So, how can I get git cvsimport to import everything?