Previous Next
CVS Menu (Source Editor)

The editor's CVS menu contains some of the CVS commands from the Project Editor's CVS menu plus one text based command:
cvs status <filename>
Show the CVS status of the currently edited file: this is the version from which editing started, the currently active branch tag and the repository file that is involved.
show editors of <filename>
Show who is currently registered by CVS as editing the current file.
cvs update <filename>
Performs a cvs update to incorporate the latest changes into the current file by patching it. Note that this can introduce conflicts that you need to resolve.
Edit <filename>
Makes the currently edited file writable and notifies CVS that it is going to be edited.
Unedit <filename>
Makes the currently edited file read-only and notifies CVS that no more editing is going to be done. Note that any changes you made will be lost after the next SNiFF+ Update File since read-only files will be brought to the revision requested by update file without any patching. So in case you want to keep your changes, you should keep your files writable (=edited) or commit them to the repository.
Find next conflict
Finds the next string "<<<<" marking a CVS conflict after an update. The same functionality is available on the Key Sequence
<CTRL>-t c .

Previous Next