Forrest logo
back to context overview

cvs

List of commands for cvs:

  • cvs:tldr:1b3c9 cvs: Add a file.
    $ cvs add ${filename}
    try on your machine
    explain this command
  • cvs:tldr:250ce cvs: Commit a file.
    $ cvs commit -m "${message}" ${filename}
    try on your machine
    explain this command
  • cvs:tldr:613b4 cvs: Add a project to the repository.
    $ cvs import -m "${message}" ${project_name} ${version} ${vendor}
    try on your machine
    explain this command
  • cvs:tldr:620d8 cvs: Create a new repository (requires the `CVSROOT` environment variable to be set externally).
    $ cvs -d ${path-to-repository} init
    try on your machine
    explain this command
  • cvs:tldr:71f88 cvs: Show changes made to files.
    $ cvs diff ${filename}
    try on your machine
    explain this command
  • cvs:tldr:8af50 cvs: Checkout a project.
    $ cvs checkout ${project_name}
    try on your machine
    explain this command
  • cvs:tldr:c2460 cvs: Update the working directory from the remote repository.
    $ cvs update
    try on your machine
    explain this command
back to context overview