Concurrent Versions System (CVS) Question:
Download Job Interview Questions and Answers PDF
How to create a CVS project?
Answer:
Suppose my project source code at /home/jiansen/project
1) mkdir /home/jiansen/cvs
2) export cvsroot=/home/jiansen/cvs
3) cvs init
4) cd /home/jiansen/project
4) cvs import -m "Initialising sources in CVS" project jiansen start
Now I am able to check out cvs project via cvs co project.
1) mkdir /home/jiansen/cvs
2) export cvsroot=/home/jiansen/cvs
3) cvs init
4) cd /home/jiansen/project
4) cvs import -m "Initialising sources in CVS" project jiansen start
Now I am able to check out cvs project via cvs co project.
Download CVS Interview Questions And Answers
PDF
Previous Question | Next Question |
What is revision control system (RCS)? | How to let other people join your project? |