We've moved CVS repo to another host by simple 'cp', after that our programmer made changes to this copy. Now I'm trying to do cvs commit
, but there is an error:
cvs [commit aborted]: there is no version here; do `cvs checkout' first
How to make the commit in a right way?
First, if you "cp" the repository, you have to re-init the cvs repository, that is made by the following steps:
First delete your CVSROOT:
Then you have to re-init your repo:
Then checkout the file you're working:
Make the changes that you want to do it, and then you can properly commit:
Hope it helps.