vote up 0 vote down star
1

About 40 minutes ago I committed a particularly complicated change involving several file renames, mergers, and deletes from git into cvs, using git-cvsexportcommit. This went fine, and a checkout from CVS sees the changes. However, the changes are not appearing when I run git-cvsimport to update my git mirror of the CVS repository.

I know that git-cvsimport delays importing very new changes to try to avoid making a git commit out of a multi-file CVS commit that isn't completed yet, but I'm pretty sure that delay is only ten minutes.

Any ideas what's wrong? How do I even debug this? Do I need to run cvsps by hand and, if so, what would I be looking for?

flag

61% accept rate

1 Answer

vote up 2 vote down

You should try deleting the relevant cvsps cache file (should be in in ~/.cvsps/). I've had similar issues in the past and I that is what cleared it up.

You could also try passing the -x option to cvsps which tells it to ignore the cache file. You can use git-cvsimport's "-p" option to do this.

If all else fails, I would guess a fresh git-cvsimport -C would pick up the change.

Good luck!

link|flag
Hmm, I think I'm already passing -p x or something like that. (Will have to check tomorrow when I get back to work.) I'll try it if I'm not. My next step was going to be a fresh git-cvsimport in the morning. Sigh... :) – skiphoppy Mar 26 at 2:14
Yep, I was already using -p x. I tried deleting ~/.cvsps/, not expecting it to work, and it didn't. So I'm doing a brand new import. At least I get to follow best practices from your other post this time. :) [I'll import into a remote named cvs this time, etc.] – skiphoppy Mar 26 at 13:20
A new cvsimport picked up what I was missing. I can see the patchset in the output of cvsps. Continued attempts to update my original git mirror don't work. Interestingly enough, my new git mirror and old share objectIDs for early commits, but not recent ones, even before the missing one. – skiphoppy Mar 26 at 20:24
Turns out instead of passing -p x, I need to pass -p -x. I'm going to be both mad and glad if that's all it is! Thank you, Brian. You have been an enormous help to me on this and other threads. I owe you lunch sometime if we are ever in the same state. – skiphoppy Apr 2 at 14:09
Just made a [long post on this](stackoverflow.com/questions/702980/…) – skiphoppy Apr 2 at 14:20
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.