`
ppju
  • 浏览: 80355 次
  • 性别: Icon_minigender_1
  • 来自: 西安
文章分类
社区版块
存档分类
最新评论

CVS command for Project codes Management

阅读更多
Now I will write down some commands of cvs. I have used it about six months, and want to share them with everyone.

Ok,the following is the normal cvs command on the command line.

1. cvs update -d -P -C
   you can use them like "cvs up -d -P", "cvs up -C", and up stands for "update"

2. cvs commit -m "comments" filename
   you can use them like "cvs ci -m "" test.txt", and ci stands for "commit". some comments can be written in the double quote.

3. cvs add -kb filename
   you can use them like "cvs add text.txt" or "cvs add -kb test.gif" for the images , Microsoft word document and so on. when the binary files will be added into the cvs, you must take the -kb into the command.

4. cvs checkout projectPath
   when you enter into the project team, firstly the project codes must be got from the cvs or other tools. In the cvs this command will be used to get the codes.you can use it like "cvs co porject" and the co stands for "checkout".

5. cvs diff -u4 filename
   If you want to know your local files have what difference with the cvs server's files, this command will do it.

6. cvs rm filename
   If some files are useless and need be deleted, you can use this command. but firstly  the "rm filename" command will be executed .And then you can delete this file completely.

7. cvs diff -r1.2 -r1.4 filename
   you will know the difference of any two version file throught this command is done.

8. cvs update -p -r1.2 filename
   If this command is executed, you will get the old version of the file. you forget adding the "-p", however, get the file added the "stick tag", and you can use "cvs up -A" to tackle it.

So some commands are written down here. The following days it will be perfect and more commands will be explained here.

Thank you for your coming.
  


分享到:
评论

相关推荐

    使用CVS进行版本管理Version Management With CVS

    该手册为CVS的新用户提供了教程示例,以及每个CVS命令和配置选项的权威参考文档。

    cvs for linux安装文档1.2.1

    ### CVS for Linux 安装与使用指南 #### 一、CVS概述 CVS (Concurrent Versions System) 是一个开源的版本控制系统,主要用于追踪文件的变化历史。它可以帮助开发者轻松地管理项目的版本,尤其是在团队协作中非常...

    cvs client for solaris10

    cvs client for solaris10

    CVS 服务器程序 CVSNT 2.0.58d + CVS 客户端工具 TortoiseCVS 1.10.10 (for win7)+ 图示说明

    CVS 服务器程序 CVSNT 2.0.58d + CVS 客户端工具 TortoiseCVS 1.10.10 (for win7)+ 图示说明 最新的版本cvsnt-2.5.03.2382有4.2MB,追新的朋友可以自己上官网下载. 1都安装好软件 2配置服务器端  a 查看运行...

    cvs版本控制原理-version management with cvs

    cvs版本控制原理,version management with cvs,非常好,欢迎下载

    CVS for windows的安装和使用

    在Windows环境下,CVS可以通过CVS for Windows或CVSNT等实现。下面将详细介绍CVS for Windows的安装和使用过程。 一、安装CVS for Windows 1. 下载:首先,你需要从可靠的源下载CVS for Windows的安装包,通常这会...

    cvs for windows

    【Cvs for Windows】是一种版本控制系统,用于管理软件项目的源代码。Cvs(Concurrent Versions System)最初是在Unix系统上开发的,但随着Windows平台的普及,Cvs也被移植到Windows环境中,形成了如Wincvs这样的...

    代码版本控制软件CVS-2.5

    cvs 将创建project_name目录,并将最新版本的源代码导出到相应目录中。这个checkout和Virvual SourceSafe中的check out不是一个概念,相对于Virvual SourceSafe的check out是cvs update, check in是cvs commit。

    TortoiseCVS for windows

    CVS(Concurrent Versions System)版本控制系统是一种GNU软件包,主要用于在多人开发环境下的源码的维护。Concurrent有并发的、协作的、一致的等含义。实际上CVS可以维护任意文档的开发和使用,例如共享文件的编辑...

    cvs-1.12.13 for linux

    【cvs-1.12.13 for Linux】是一个针对Linux操作系统的版本控制系统CVS(Concurrent Versions System)的特定版本。CVS是开源软件,广泛用于源代码管理,它允许开发团队协同工作,跟踪代码变更历史,合并不同开发者的...

    cvs最简单的使用方法

    这将在当前目录下创建一个名为`my_project_checkout`的目录,包含从CVS仓库检出的最新项目文件。 ### 更新和同步 要获取仓库中的最新更改,使用`cvs update`命令: ```bash cd my_project_checkout cvs update ``...

    cvs for linux iso

    在linux下运行的cvs服务器,这个是打成ISO形式的RPM包,可以方便在虚拟机上。

    a project model for the FreeBSD Project.7z

    A project model for the FreeBSD Project Niklas Saers Copyright © 2002-2005 Niklas Saers [ Split HTML / Single HTML ] Table of Contents Foreword 1 Overview 2 Definitions 2.1. Activity 2.2. Process ...

    CVS完全手册--CVS一本通

    cvs [global_opts] command [command_opts] [command_args] ``` - `global_opts`:全局选项,适用于所有命令。 - `command`:具体命令,如`checkout`、`commit`等。 - `command_opts`:特定命令的选项。 - `command_...

    Eclipse中CVS使用

    然后,通过Eclipse的"Team"菜单,选择"Share Project"将项目与CVS关联。接着,可以进行文件的添加、删除、提交以及从服务器获取更新等操作。 1.4 版本控制实践建议 - 保持良好的提交习惯,每次提交时附带清晰的注释...

    Version management with CVS

    ### 版本管理与CVS #### 一、概述 版本控制系统(Version Control System, VCS)是一种软件工具,用于管理计算机程序和其他文档的历史记录。它可以帮助开发人员追踪代码的变化,回溯到早期版本,以及合并来自不同...

    CVS for the developer or amateur

    ### CVS for the Developer or Amateur #### 一、教程概述与适用人群 本教程旨在为初次接触CVS(Concurrent Versions System)的用户介绍这一全球范围内广泛使用的版本控制系统。无论你是希望简单地从CVS获取最新...

    批量清空CVS文件

    for /r "C:\path\to\your\project" %%i in (.CVS) do ( if exist "%%i" ( rd /s /q "%%i" echo 删除了!%%i! ) ) echo 批量清空CVS完成。 pause ``` 请将`"C:\path\to\your\project"`替换为你的实际项目路径。这...

    CVS教学电子书如何安装CVS,CVS使用

    **CVS(Concurrent Versions System)**是一种广泛使用的版本控制系统,尤其在开源软件开发中扮演着重要角色。它能够跟踪代码的变化,管理多个开发者协作时的版本冲突,并提供了历史记录和回滚功能,使得团队协作...

Global site tag (gtag.js) - Google Analytics