This section describes the procedure to modify the software in the CVS repository.
-
First step is to download (check out) the full NoGoZone software as a developer. See section
DOWNLOAD: DOWNLOAD SOURCES AS A DEVELOPPER CVS USER VIA SSH
The developer should browse the directory NoGoZone, selects a sub-directory and modify one file.
-
The second step is to upload the modification into the CVS repository with the command: commit
The commit command sends modifications to the repository. If you don't name any files, a commit will
send all changes to the repository; otherwise, you can pass the names of one or more files to be
committed (other files would be ignored, in that case).
Type the following command to upload modification of file: For example the file: hello.c
-
export CVS_RSH=ssh
-
cvs -z3 -d:ext:developername
@nogozone.cvs.sourceforge.net:/cvsroot/nogozone commit -m "Modification header" hello.c
Remark:
-
z3 is an option to compress and de-compress data during the transfer.
-
d is an option to specify the root directory pathname of the master source repository.
-
developername specifies sourceforge identification of the developer.