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 export all files that have changed between two dates

How can I export from CVS only the files that have been changed (committed) in a certain time period? I would like to do this so I can send a 'patch' of only the files that have changed (retaining directory structure) to a client, rather than the…
David Cook
  • 483
  • 7
  • 25
0
votes
1 answer

How can I efficiently get new directories with cvs?

If another developer adds a new directory to the CVS repository, I'd like my next update to bring this new directory into my working copy. Running cvs update doesn't do this. Running cvs update -d does, but it takes a helluva long time; it prints…
bythescruff
  • 1,869
  • 2
  • 17
  • 33
0
votes
5 answers

CVS alternative

as the title says, I'm looking for an alternative to CVS. Basically, I'm unable to setup an a constantly on CVS server, and so far, the current setup my team uses is a shared directory. With that in mind, I'm looking for something that has the…
Hatdog
  • 296
  • 2
  • 8
0
votes
1 answer

how to ignore cvs folder in Ant script

After building an application by using ant, i am copied the component to a temp folder. But, the cvs folder is also copied and it increases the no of folder and file almost double by number. Is there any solution to ignore cvs folder in ant build…
Shashi
  • 12,487
  • 17
  • 65
  • 111
0
votes
2 answers

cvs2git migrates binary files (flagged with -kb) that are different from git and cvs

I've run a cvs2git migration on a CVS repository that's over 2 GB. I wrote a script traverses the new git repository and the CVS module to verify that the objects are the same. I've found that the text files migrate just fine and have the same…
joshm1
  • 553
  • 1
  • 10
  • 21
0
votes
3 answers

Smart CVS and Core data

I have a smart cvs installed on my iMac, and i have update the application from the cvs. Then i did some changes on my code and on the core data ( core data changes are: remove some attributes from core data entity), then i tried to commit the…
Ayman Melhem
  • 493
  • 3
  • 13
0
votes
1 answer

How to find out changes from the created date branch to current time

I created a branch name ABC123 in my cvs repository, but i forgot to tag it. So now i want to find out changes from the created branch date to current time. I've tried: cvs diff -D20090619 source but it is not successful. CVS is quite bad than SVN…
Minh
  • 135
  • 2
  • 8
0
votes
1 answer

Can a CVS branch override an existing smaller branch with the same name?

Lets say you have a directory structure committed into CVS: dirA/dirB/dirC dirB has been branched with the branch name "development". Is it possible to remove the "development" branch off dirB, then create a new "development" branch on dirA? We…
rusty_turkey
  • 320
  • 1
  • 3
  • 14
0
votes
1 answer

How to see only new files in output when executing "cvs -n update" command?

When I do "cvs -n update" command I get a long list of files that are modified, missing or new. In the output, I want to see only new files, it means I want to see lines starting with "?". Then I will do "cvs add file_name" and add the new files to…
alwbtc
  • 28,057
  • 62
  • 134
  • 188
0
votes
1 answer

git cvsexportcommit pserver fails

I'm using git and a cvs repo i've trying to follow How to export revision history from mercurial or git to cvs? except i'm using a -d pserver instead of -w local cvs repo I've done a git cvsimport and that seems to be good. I am now trying to…
nate_weldon
  • 2,289
  • 1
  • 26
  • 32
0
votes
1 answer

Ignoring an entire directory and subdirectories on CVS commit

How does one ignore the entire contents of the a directory with name target in using a .cvsignore file. I currently use eclipse IDE I have tried to use target but it does not seem to work. Should i rather be using target/* or target*. This would…
biosFF
  • 223
  • 2
  • 9
0
votes
2 answers

Maintaining Eclipse project include/lib paths in CVS

Background: Here at the office my group uses a common linux environment where we do our code development. Our code is kept in CVS. The latest releases of our various libraries are kept in a specific directory (ie /data/group_projects/lib). Our…
Chris
  • 341
  • 1
  • 5
  • 12
0
votes
1 answer

In CVS, how can I find all the revisions of a file on a certain branch

My source code is versioned with CVS (in particular CVSNT). Given the full path of a file and the name of a branch, how can I get all the revisions (just the numbers like 1.341.2.1) of the file on the branch?
Alessandro Jacopson
  • 18,047
  • 15
  • 98
  • 153
0
votes
2 answers

How to add new CVS in eclipse?

I have developing one PHP project using eclipse locally. Now i need to share this project to another system in LAN. Can anybody help me as how to do this..? How to add CVS in eclipse..?
Vinu
  • 167
  • 4
  • 14
0
votes
2 answers

Update cvs and files with eclipse

In the past, with Eclipse and a PHP Server/system, I had it setup so that when I commited changes to the CVS repository, it also saved the actual php files on the server. I had this functionality on a another computer in the past (I can't check…