Mantis Logo
Mantis Manual
Manual
Development

Contributing
Coding Guidelines
CVS
Localization
Database
Roadmap
Configuration Variables


Partner Links


CVS
Last Modified: August 11, 2003 00:08AM
(Any)
Description

Mantis uses CVS to store and control its source code. Anonymous cvs access allows anyone to download the most current snapshot of the code.

Warning: the latest build may not always function correctly. The development team will not support CVS snapshots. Only use this if you feel confident dealing with any problems that arise.

Follow the link and follow the commands there. The module name you want to use is mantisbt.

Mantis CVS

Browse Mantis CVS

Download Nightly Tarball

CVS Reference

WinCVS Reference


CVS Usage


cvs -nq update

This checks for any updates without performing an actual update.

Files modified locally are marked with M.
Files needing an update are marked with U.
Files marked for removal are marked with R.
Files marked for addition are marked with A.
Files that have conflicts are marked with C.
Files that are not in CVS but in the work area are marked with ?.

P seems to mean needs Patching. So this is just like a U.

cvs -q update

Update files.

cvs commit -m "description of the modifications"

Checkin all modified files. Also add marked files and remove marked files. You can also use "ci" (check-in) instead of commit.

cvs commit -m "description of the modifications" <space separated list of filenames>

Checkin all listed files. Also can add marked files and remove marked files. You can also use "ci" (check-in) instead of commit.

cvs add <file or dir>

Adds a file or directory to the CVS repository. Accepts wildcards eg. cvs add *.php

cvs add -kb <binary file>

Adds a binary file like a JPG or GIF file to CVS.

cvs remove <filename>

Mark a file for retrieval. Note that you have to remove the file from the filesystem first.

cvs status -v <filename>

See a verbose detail listing of a file. This is useful to quickly see what branches a file may be a part of.

User Contributed Notes
CVS
Add Notes About Notes
There are no user contributed notes for this page.
Last updated: Tue, 14 Oct 2008 - 8:42:40

Mantis @ SourceForge