search
HomeCommon ProblemWhat is the difference between svn and cvs

Difference: 1. The version number of CVS is based on the self-increasing serial number of the file, while the SVN is based on the global self-increasing serial number, not only for files, but also for directories; 2. CVS is based on RCS files , while SVN is based on a relational database or a series of binary files; 3. CVS allows arbitrary rollback, but SVN does not allow rollback after submission; 4. SVN supports the "zero or one" transaction principle, but CVS does not; 5. CVS does not support local file rename submission, but SVN supports it; 6. CVS has four permissions, while SVN only has three permissions.

What is the difference between svn and cvs

The operating environment of this tutorial: Windows 7 system, Subversion version 1.14, Dell G3 computer.

CVS (Concurrent Versions System):

is a concurrent version system for developing source code. It is available for various platforms, including Linux, Unix and Windows NT/2000/XP, etc. CVS is free and open source and provides version management for projects.

Function introduction:

1. Unified code management, saving the history of changes to all code files. Centralized and unified management of code makes it easy to view newly added or deleted files and track all traces of code changes. You can restore to any previous historical version at will. And avoid deep BUG introduced due to different versions.

2. The complete conflict resolution solution can easily solve file conflict problems without the need to use other file comparison tools and manual pasting and copying.

3. Management of code permissions. Different permissions can be set for different users. Passwords, read-only, modification and other permissions for access users can be set, and through scripts in the CVS ROOT directory, an interface for corresponding function expansion is provided, which can not only complete fine-grained permission control, but also complete more personalized functions.

4. Support convenient version release and branch functions.

SVN (Subversion):

  • ## The full name of SVN is Subversion, which is the version control system. SVN is the abbreviation of Subversion. It is an open source version control system. Compared with RCS and CVS, it adopts a branch management system. Its design goal is to replace CVS. Many version control services on the Internet have migrated from CVS to Subversion.

  • SVN is a centralized file version management system.

  • The core of centralized code management is the server. All developers must obtain code from the server before starting a new day's work, then develop, and finally resolve conflicts and submit. All version information is placed on the server. If you are disconnected from the server, developers basically cannot work.

(SVN) Centralized management workflow:

The core of centralized code management is the server. All developers start a new day The work must be done before getting the code from the server, then developing it, and finally resolving conflicts and submitting it. All version information is placed on the server. If you are disconnected from the server, developers basically cannot work.

The management process is as follows:

What is the difference between svn and cvs

The difference between svn and cvs


CVS SVN
About version number File-based auto-incrementing serial number. Based on the global self-increasing serial number, not just for files, but also for directories, etc.
Storage type format CVS is a version control system based on RCS files. Every CVS file is just a regular file with some extra information. These files simply repeat the local file tree structure. Therefore, there is no need to worry about any data loss, you can modify the RCS file manually if necessary. SVN is based on a relational database (BerkleyDB) or a series of binary files (FS_FS). On the one hand this solves many problems (e.g. parallel reading and writing of shared files) and adds many new features (e.g. transactional features of the runtime.). On the other hand, data storage becomes opaque or not so user-friendly. That's why software tools have become so important for warehouses (databases).
Access speed is relatively slow; because it is based on one-way (server-->client) differentiated file transfer as a whole In other words, due to different architecture implementations, SVN is indeed much faster than CVS; because it uses two-way differentiated file transfer.
It transmits very little information over the network and supports more offline mode features. But it comes at a cost. The price for speed is huge storage (full backup of all working files).
Metadata Only allowed to store files Allows a file to have any nameable attributes. The function is very complete, but I don’t know what it is used for
File type was originally designed for text file storage. Therefore, there is almost no support for other file types (binary, Unicode). If necessary, additional information must be provided, and both client and server must be adjusted. SVN will care about all file types and does not require you to do manual operations; because its storage is based on binary
Roll back CVS Allows arbitrary rollback of any committed version, although it takes some time (all files must be processed separately). SVN does not allow rollback after submission. We recommend adding the good version in the repository to the end and overwriting the corrupt version. The corrupted version will be stored in the database anyway.
Transaction The "zero or one" transaction principle in CVS is not implemented at all. If you check in several files (add them to the server), it is possible that some of them will be completed but others will not. As a rule of thumb, correct these manually and check in again for the remaining files (not all files). These files will then be checked in in two phases. But so far, there has been no case of data warehouse damage caused by the lack of this function. Supports the "zero or one" transaction principle, which is a major advantage of SVN
Architecture, code, scalability CVS is an old system. At first, CVS was just some script files using RCS. Later these scripts were grouped into a single application, but the internal structure still needed improvement. To this day, there are still people trying to rewrite CVS from scratch, but they have failed. We once tried to rewrite the client code for better integration, but it was unsuccessful. Now we don't think CVS can go very far in terms of functionality. Subversion developers do spend a lot of time on internal architecture. We still don’t know how true these decisions were and so on. But one thing is certain, the code has good scalability and enhancement work is also in progress.
Renaming and deletion operations Does not support local file rename submission;
Deletion is divided into remove and erase. The former deletes both local and library files. , the latter only deletes local files;
cannot delete folders
supports file renaming and submission, the system will prompt to delete old files and create new files
Deleting local files and submitting files in the library will also be deleted
User access permissions There are four permissions: read, write, creat, none. No one can delete the folder. (Admin can only run to the server and brutally delete the corresponding folder? I only know this method for the time being...) There are only three permissions: read, write, and none. The creat and delete permissions seem to be tied to write. Together
Creating branches and baselines CVS When creating a branch, all branched files need to be operated in sequence, so the cost of establishing the branch ( Mainly the time required to establish a branch, or the computing resources consumed) is proportional to the number of files participating in the branch. The larger the project, the larger the version library, the more files, the higher the cost of establishing the branch; the establishment of the baseline (tag) Similar to this. SVN's branches and baselines are established by performing "copies": Recall how we performed so-called "branch" and "baseline" management before version management tools were introduced? The answer is obviously "copy" - we establish a baseline through "copy" or "backup"; similarly, to support multiple developers developing at the same time, we create a "copy" for each developer.

(Learning video sharing: Basic Programming Video)

The above is the detailed content of What is the difference between svn and cvs. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP开发中如何使用SVN进行版本控制PHP开发中如何使用SVN进行版本控制Jun 27, 2023 pm 01:39 PM

在PHP开发中进行版本控制是很常见的操作,其中最常用的工具就是SVN(Subversion)。它可以方便地管理代码的历史版本以及协同开发过程中的代码更新。下面将介绍如何在PHP开发中使用SVN进行版本控制。一、安装SVN客户端和服务端首先需要安装SVN客户端和服务端。SVN客户端可以在SVN官网上下载对应的版本,安装即可,而服务端则需要自行搭建,具体方法可以

Java SVN:代码仓库的守护者,确保代码稳定性Java SVN:代码仓库的守护者,确保代码稳定性Mar 09, 2024 am 09:20 AM

SVN简介SVN(Subversion)是一种集中式版本控制系统,用于管理和维护代码库。它允许多个开发者同时协作开发代码,并提供对代码历史修改的完整记录。通过使用SVN,开发者可以:保障代码稳定性,避免代码丢失和损坏。追踪代码修改历史,轻松回滚到之前的版本。协同开发,多个开发者同时修改代码而不会冲突。SVN基本操作要使用SVN,需要安装SVN客户端,例如TortoiseSVN或SublimeMerge。然后,您可以按照以下步骤执行基本操作:1.创建代码库svnmkdirHttp://exampl

详解如何安装和设置EclipseSVN插件详解如何安装和设置EclipseSVN插件Jan 28, 2024 am 08:42 AM

EclipseSVN插件的安装和设置方法详解Eclipse是一个广泛使用的集成开发环境(IDE),它支持许多不同的插件来扩展其功能。其中之一是EclipseSVN插件,它使开发人员能够与Subversion版本控制系统进行交互。本文将详细介绍如何安装和设置EclipseSVN插件,并提供具体的代码示例。第一步:安装EclipseSVN插件打开Eclipse

用vimdiff替代svn diff:比较代码的工具用vimdiff替代svn diff:比较代码的工具Jan 09, 2024 pm 07:54 PM

在linux下,直接使用svndiff命令查看代码的修改是很吃力的,于是在网上搜索到了一个比较好的解决方案,就是让vimdiff作为svndiff的查看代码工具,尤其对于习惯用vim的人来说真的是很方便。当使用svndiff命令比较某个文件的修改前后时,例如执行以下命令:$svndiff-r4420ngx_http_limit_req_module.c那么实际会向默认的diff程序发送如下命令:-u-Lngx_http_limit_req_module.c(revision4420)-Lngx_

SVN在CentOS上的安装及命令行安装SVN在CentOS上的安装及命令行安装Feb 13, 2024 am 11:24 AM

在CentOS上安装SVN是非常常见的操作,它是一个功能强大的版本控制系统,可以用于管理和追踪软件开发过程中的变更,本文将详细介绍如何在CentOS上安装SVN,并提供一些常用的命令行安装方法。在CentOS上安装SVN有多种方法,下面将介绍两种常用的安装方式。1.打开终端,以root用户身份登录。2.运行以下命令更新系统软件包列表:```yumupdate3.运行以下命令安装SVN:yuminstallsubversion4.安装完成后,可以通过运行以下命令验证SVN是否成功安装:svn--v

svn与vss的区别是什么svn与vss的区别是什么Jun 21, 2022 am 11:23 AM

区别:1、vss是微软开发的,是收费的,而svn是开源免费的;2、vss必须有客户端,而svn可以用客户端,也可以用命令行模式,还可以用网页方式只读访问;3、vss只支持windows系统,而svn支持windows和linux系统;4、vss是“锁定-编辑-解锁”模式,svn默认是“修改-冲突-合并”模式;5、vss的版本号对应的是单个文件,svn的版本号对应的是整个版本库。

Linux开发者的必备技能:简单掌握SVN版本控制Linux开发者的必备技能:简单掌握SVN版本控制Jan 26, 2024 pm 09:54 PM

身为Linux开发人员,往往需要运用SVN控制项目版本。对于优秀开发者而言,熟知如何查阅SVN版本无疑是必备技能之一。今日,笔者想借此机会和各位分享自己的心得,希望能助您更好地掌握这一实用技巧。1.安装SVN命令行工具请先在Linux环境中安装SVN命令行工具哦!请拨通终端,然后稳妥地输入下面这条指令来完成安装吧:```尊敬的用户,请执行sudoapt-getinstallsubversion以安装Subversion。2.连接到SVN服务器安装完毕后,我们需要连接到SVN服务器。输入以下命令:

PHP入门指南:SVN版本管理PHP入门指南:SVN版本管理May 20, 2023 am 08:29 AM

作为一种常用的服务器端脚本语言,PHP凭借其开源、跨平台的优势,被广泛应用于Web开发领域。而在多人协作的开发中,版本控制是一个不可或缺的工具,它可以有效地管理源代码的修改与更新,避免因团队成员之间代码不同步而造成的冲突。而SVN作为一款流行的版本控制工具,在PHP开发中的应用也十分广泛。本文将为大家介绍PHP开发中的SVN版本控制的基础知识,包括SVN的安

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.