This is the Visual Studio Code extension to use CVS.
This extension is in very early stage of development. Use on your own risk
After installing the extension, add the CodeCVS.CVSROOT
setting to your settings.json:
"CodeCVS.CVSROOT": ":pserver:[email protected]:/var/cvsroot"
CodeCVS
extension contributes the following settings:
CodeCVS.CVSROOT
: CVSROOT variableCodeCVS.add_as_binary
: Add uncontrolled files as binary to the repository
The command allows you to commit local changes to the repository.
Modify any commited to the repository file, then call CodeCVS: commit ...
command:
Click button Compare modified files
to see diff's:
The command allows you to add locally added files to the repository.
Create file in your local repository, then call CodeCVS: add ...
command:
If you want to add file as binary, add the CodeCVS.add_as_binary
setting to your settings.json:
"CodeCVS.add_as_binary": 1
The command allows you to remove locally removed files from repository.
Delete file from your local repository, then call CodeCVS: remove ...
command:
Select only the files that you deleted.
The command allows you to add locally added directory to the repository.
The command allows you to compare file with clean copy of it from repository.
The command allows you to see local changes compared to the repository.
The command allows you to checkout module from repository.
The command allows you to update local files/directories from the repository.
CodeCVS
extension duplicates stderr of the CLI CVS client to the OUTPUT tab. To see CVS errors, select CodeCVS
from the contextual menu.