Reputation: 583
I have scheduled some files to remove in CVS but have not commited the same. Now I don't want to remove those files. What should I do? To commit file addition/deletion, we use cvs commit. Whats the opposite of cvs commit?
Upvotes: 0
Views: 62
Reputation: 41454
You can use cvs add
on the file to resurrect it; it will be copied from the repository to your working directory, and the removal/addition will not show up in your next commit.
Upvotes: 1