Questions tagged [cvs]

CVS - Concurrent Versions System - is an open-source version control system

#Description CVS, or Concurrent Versions System, is a client–server version control system based on the earlier RCS.

A version control system keeps track of all work and all changes in a set of files, and allows several developers (potentially widely separated in space and time) to collaborate. Dick Grune developed CVS as a series of shell scripts in July 1986.

In addition to commercial software developers, CVS became popular with the open source software world and was released under the GNU General Public License. While there was regular development to add features and fix bugs in the past, including regular builds and test results, there have been no new releases since 2008.

Whilst it lacks support for features more prevalent in newer version control systems (Unicode support, file renames, distributed revision control, cheap branching), and is not in active development, it is still used by a number of open source and commercial developers.

#Documentation

1521 questions
0
votes
1 answer

CVS Checkout in Windows from Linux Samba CVSROOT

I need to checkout from a CVS base in Linux, on a Windows machine with a directory link to a samba folder on Linux. In Linux, my cvsroot folder is mylogin$ cd /home/myuser/repositories/cvsroot mylogin$ ls CVSROOT PRJ1 PRJ2 mylogin$ which is mapped…
Rego
  • 1,118
  • 1
  • 18
  • 40
0
votes
1 answer

Why are CVS branch numbers even?

I'm interested in why the branch numbers for CVS are even? E.g. 1.2.0.2. What is 1.2.0.1 used for? Is it used by CVS internally?
Shengyan
  • 93
  • 2
  • 7
0
votes
1 answer

IDE CVS checkout from a tag

I was wondering if there is a clean way of checking out code from CVS for a given tag from cvs repository perspective (tag from production to maintain and patch that work space). I know that we can check out code from head and replace the all…
Srujan Kumar Gulla
  • 5,721
  • 9
  • 48
  • 78
0
votes
1 answer

Error while connecting to CVS repository in Windows

I created repository in my machine №1 (192.168.1.100) and shared project: Now, when I trying to connect to repository on machine №1 (192.168.1.100) from my machine №2 (192.168.1.101), I catch an error: Connection properties are the same on both…
Bogdan Kobylynskyi
  • 1,150
  • 1
  • 12
  • 34
0
votes
1 answer

How to escape cvs keywords in Makefile?

I am trying to automatically set the version in a makefile from the CVS tag. Here is relvant the part of the makefile: VERSION =$Name: $ That works ok when I checkout the project. The keyword is replaced by the tag. The problem is that as it is…
B-K
  • 359
  • 1
  • 2
  • 9
0
votes
2 answers

How do you rename a branch in CVS without admin access?

A separate question covers How do you rename a branch in CVS? assuming you have access to cvs admin commands. Is it possible to do this without using cvs admin commands?
kwutchak
  • 1,022
  • 3
  • 11
  • 22
0
votes
1 answer

How do I track different users in CVS?

I am using a CVS repo for my java code - I need to give access to this code for a feature that three developers that I am going to hire are going to develop. I don't want them to commit their changes - I just want all three to develop the same…
Jay
  • 2,394
  • 11
  • 54
  • 98
0
votes
1 answer

How to checkout an empty directory from CVS in Intellij?

Some one has created an empty package in CVS. I want to checkout this package in Intellij but nothing appears in intellij. Does any one know why and how to solve it?
itro
  • 7,006
  • 27
  • 78
  • 121
0
votes
1 answer

A versioned equivalent for SVN properties to be preserved during SVN -> Git migration

For the purpose of versioning the content of all jar files released to our customers, for the last few years we've been releasing a text file within those jars that would hold File <-> CVS Version mapping for each java file contained in that jar.…
Jacek M
  • 2,349
  • 5
  • 22
  • 47
0
votes
1 answer

CVS vs SVN Branching Strategy

I am investigating trying to get my team at work to move from CVS to SVN, in my opinion SVN has many advantages over CVS however moving a legacy system and team from something that has been used for 10+ years will prove difficult. I'm trying to…
Pez Cuckow
  • 14,048
  • 16
  • 80
  • 130
0
votes
2 answers

tcl exec with cvs upd: why it exits?

My question is very simple. Take into consideration the code snippets below: set cvsPath "C:/Program Files (x86)/cvsnt/cvs.exe" puts [exec $::cvsPath log filename] puts "------------- END OF SCRIPT ---------------------" This one prints the log and…
Narek
  • 38,779
  • 79
  • 233
  • 389
0
votes
1 answer

How to commit new project in the branch using cvs and eclipse

How to commit a newly created project in branch. I tried it, but it is getting committed in HEAD. Please help me
Developer404
  • 5,716
  • 16
  • 64
  • 102
0
votes
2 answers

get the current HEAD version of a CVS file on the server

Using the rlog command I can analyze the commit log to a file on the CVS server itself (that is, directly accessing the file ending in ",v"). That's fine. Is there a similar command line utility that prints the current HEAD version of that file to…
Udo G
  • 12,572
  • 13
  • 56
  • 89
0
votes
1 answer

Running CVS in console upsets BZR by changing output encoding

I am using both cvs and bzr for versioning and prefer running both in a powershell console. But when I run cvs, it changes the console encoding, which makes bzr throw error messages. I tried setting $OutputEncoding to UTF-8 in my PSProfile and then…
Kenned
  • 568
  • 4
  • 11
0
votes
2 answers

How to configure CVS server in windows for eclipse ...?

I would like to configure CVS server in my workplace for eclipse development. Please give the steps to configure the CVS server in windows. Thanks in advance...
Akhil
  • 303
  • 2
  • 7
  • 19