vote up 0 vote down star

I'm looking to automate the backup of a Windows XP file structure (a wiki) into CVS.
Through repeated calls to cvs commit and cvs add I can identify and commit changed files and newly added files, but I can't see a cvs command that would let me know a local file has been deleted.

One possibility would be to update a parallel file structure with the latest files from the repository and then remove those files that only appear in second structure, but I was hoping there was a more efficient solution?

flag

2 Answers

vote up 0 vote down check

You'll need to run cvs update, and parse the results. It will tell you which files have been added, removed, etc. Then you can use those to run the right commands. A warning: CVS isn't easy to automate, because it's not very consistent with its messages. But you'll get it working eventually.

link|flag
vote up 3 vote down

You could do a

cvs -nq update

and look for lines like

cvs update: warning: SourceControlledFile.xml was lost
link|flag

Your Answer

Get an OpenID
or

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