Tagged Questions
CVS is an open-source version control system.
50
votes
3answers
17k views
How to export revision history from mercurial or git to cvs?
I'm going to be working with other people on code from a project that uses cvs. We want to use a distributed vcs to make our work and when we finish or maybe every once in a while we want to commit ...
35
votes
17answers
11k views
Could you recommend a good free project hosting website? [closed]
Something like Google Code or SourceForge, but for closed source projects and better access management.
Found links to these 3 on a forum:
https://opensvn.csie.org/ SVN
...
33
votes
8answers
15k views
Subversion vs CVS
I've used both SVN and CVS a little bit, but will need to choose one for a new project I will be starting.
Can anyone who has used both extensively please offer some pros and cons and which they ...
29
votes
17answers
2k views
How do you deal with configuration files in source control?
Let's say you have a typical web app and with a file configuration.whatever. Every developer working on the project will have one version for their dev boxes, there will be a dev, prod and stage ...
24
votes
10answers
11k views
Moving from CVS to git: $Id:$ equivalent?
I read through a bunch of questions asking about simple source code control tools and git seemed like a reasonable choice. I have it up and running and it works well so far. One aspect that I like ...
24
votes
10answers
6k views
What are the advantages of using SVN over CVS?
My company currently uses CVS as our defacto standard for source control. I've heard many people say SVN is better, and I know that it's newer, but other than that am not sure of the benefits. I ...
20
votes
7answers
22k views
CVS: List all files changed between tags (or dates)
Is there any way to list all the files that have changed between two tags in CVS?
Every time we do a release we apply a tag to all the files in that release. I want to find all the files that changed ...
19
votes
10answers
7k views
How do I revert a big change in CVS?
One of my colleagues has totally messed up the contents of a directory in our main CVS repository. I need to just revert the whole module to the state it was in at the end of last year. What's the ...
19
votes
20answers
3k views
Can someone recommend a reliable CVS or SVN hosting service?
I want to use CVS or SVN as my source control mechanisms on several side projects I am working on. Instead of hosting the server myself, I was wondering if anyone had any recommendations on CVS or ...
18
votes
9answers
4k views
Difference between GIT and CVS
What is the difference between git and cvs version control systems?
I have been happily using CVS for over 10 years and have been told that GIT is much better. Could someone please explain what ...
18
votes
29answers
1k views
Where to start with source-control
Anyone have any suggestions on where to start for a newbie wanting to try out some sort of source-control along with a new journey into ASP.NET? SVN, VSS, CVS...I dont even know where to start!
14
votes
6answers
10k views
How do I restore a deleted file in CVS?
I've removed a checked in file from the CVS branch, i.e.:
cvs remove -f file.txt
cvs commit
How do I restore the file?
14
votes
8answers
5k views
Version control PHP Web Project
We have a php project that we would like to version control. Right now there are three of us working on a "Dev" version of the project that all have our Eclipse linked to it with just an external ...
13
votes
22answers
2k views
Which is more popular (currently, by recent install base) SVN or CVS? [closed]
We are considering switching our source control repository at my work from Perforce to either CVS or SVN. I said that I didn't think CVS was as popular as SVN recently, and was met with a lot of blank ...
13
votes
14answers
541 views
Do you use version control other than for source code?
I've found SVN to be extremely useful for documentation, personal files, among other non-source code uses.
What other practical uses have you found to version control systems in general?
12
votes
5answers
439 views
Context-aware merge?
Is there any diff/merge tool for programming languages, that works in a syntax-aware way (like XML Diff Tool), doing more than compare line-by-line (and optionally ignoring whitespace).
I'm ...
12
votes
6answers
18k views
Remove empty directory from CVS?
I'm not quite sure how this happened, but somehow a completely empty hierarchy of directories has ended up in my repository:
com/
com/companyname/
com/companyname/blah/
com/sun/
com/sun/java/
...
12
votes
5answers
7k views
Why is deleting a branch in CVS not recommended?
Under what circumstances would this or would this not be safe? I have a branch that has a four changes (no file add or deletes). Would this be safe to delete?
Edit:
The reason for wanting to delete ...
11
votes
8answers
691 views
Scalable (half-million files) version control system
We use SVN for our source-code revision control and are experimenting using it for non-source-code files.
We are working with a large set (300-500k) of short (1-4kB) text files that will be updated ...
11
votes
3answers
2k views
How to migrate project from RCS to git? (SOLVED)
I have a 20-year-old project that I would like to migrate from RCS to git, without losing the history. All web pages suggest that the One True Path is through CVS. But after an hour of Googling and ...
11
votes
5answers
4k views
Is there a migration tool from CVS to Git?
I intend to switch over from CVS to Git.
In the case of SVN, there seems to be cvs2svn. Is there a similar tool to easily migrate from CVS to Git?
10
votes
16answers
717 views
Source Control - If, Why, How to start? [closed]
Possible Duplicate:
Using Source Control
So, although even here on stackoverflow are literally dozens things on version control, i can't find something nice to answer all my questions. If you ...
10
votes
19answers
1k views
Why should I use version control? [closed]
Possible Duplicates:
Do I really need version control?
Using Version Control for Home Development
I was reading a blog where the writer said this
"Code doesn’t exist unless it’s ...
10
votes
6answers
11k views
How do I merge a CVS branch into HEAD using the Eclipse merge tools?
I'm currently working in a branch I created using the Team-->Branch. How do I use Team-->Merge to merge my changes to the branch back to head?
10
votes
5answers
23k views
What's the best CVS client for Windows? [closed]
We're currently using WinCVS but it's slow and has no merge dialog. I'm looking for something like Eclipse's Team Synchronize (so people can see what they'll get before they update).
What do you ...
10
votes
2answers
844 views
What Python bindings are there for CVS or SVN?
I once did a cursory search and found no good CVS bindings for Python. I wanted to be able to write helper scripts to do some fine-grained manipulation of the repository and projects in it. I had to ...
9
votes
1answer
431 views
Most robust way to convert a CVS repository containing Eclipse projects to git?
I have a situation where I have an elderly CVS repository which we would like to convert to git once and for all while keeping full history etc.
All folders at the root of the repository contains ...
9
votes
4answers
438 views
Most common CVS gotchas from a SVN user standpoint
I am myself a subversion user, and overall very happy with it. However, there are times that I need to work on code stored on a CVS repository that is beyond my control (ie, some open source ...
8
votes
2answers
214 views
why eclipse doesn't come with bundled svn client
eclipse is deployed with cvs client plugin by default. why there are no svn source control clients that bundled also by default?
8
votes
3answers
514 views
Is Git a good version control system for web development (HTML/CSS/Javascript) on a corporate project?
I'm currently involved in a large project - the redevelopment of a corporate website.
The project involves many staff across several teams (content, design, etc).
There is a small team (myself and ...
8
votes
8answers
693 views
Sell me Distributed revision control
I know 1000s of similar topics floating around. I read at lest 5 threads here in SO But why am I still not convinced about DVCS?
I have only following questions (note that I am selfishly worried only ...
8
votes
3answers
3k views
Best way to automatically check out and compile Eclipse projects with Ant in Hudson or another CI tool?
We have several products which have a lot of shared code and which must be maintained several versions back.
To handle this we use a lot of Eclipse projects, some contain library jars, and some ...
8
votes
4answers
4k views
How do I get a list of commit comments from CVS since last tagged version?
I have made a bunch of changes to a number of files in a project. Every commit (usually at the file level) was accompanied by a comment of what was changed.
Is there a way to get a list from CVS of ...
8
votes
3answers
7k views
CVS Checkout to a directory
How do i check out a specific directory from CVS and omit the tree leading up to that directory?
EX.
Id like to checkout to this directory
C:/WebHost/MyWebApp/www
My CVS Project directory ...
7
votes
3answers
799 views
Ignore files in Mercurial using Glob syntax
I'm using Mercurial and I have a following structure:
files
test
demo.jpg
video.flv
video.doc
sport
demo2.jpg
picture.jpg
text.txt
demo3.jpg
...
7
votes
6answers
386 views
Emacs / CVS / OpenSSH: preventing password popup
I'm using GNU Emacs on my Ubuntu netbook in fullscreen mode. When I edit files that are under version control and hit C-x v v to commit the latest changes, an OpenSSH popup window will open and ask me ...
7
votes
1answer
760 views
Mercurial hg, am I doing it right?
We are in the process of converting from CVS to Mercurial hg.
Our infrastructure is Windows 2003/IIS6
Each developer develop on their machine
1xDevelopement server
1xStaging server
Production ...
7
votes
4answers
280 views
Arguments to convince to switch from CVS to SVN
The UNIX department of my company currently uses CVS as source-version control system. They use it in a very strange way: different repositories for development/testing/production code (for the same ...
7
votes
2answers
337 views
How to guerilla VC with git while forced to use CVS at work?
My place of work currently uses CVS. A git migration is planned but it might be a long time coming. In the mean time I have a one-man project, and have decided to use git for my own personal ...
7
votes
3answers
3k views
How to view recent CVS project changes in Eclipse?
Is there a way in Eclipse to view all recent changes of a project? Like in SVN, you can just go "view log" on a right-click menu of a folder. In CVS/Eclipse, I can only view history on a certain file. ...
7
votes
2answers
1k views
Is git with cvs faster than cvs alone?
My team works on a project in cvs containing about 20,000 Java files. Because of the number of files, it takes a while to do a cvs update. I typically keep about 5 copies of the entire tree checked ...
7
votes
1answer
342 views
In source-control terminology what is a spike?
I've seen the word "spike" used in relation to source-control.
For example, a project I'm working with has three top-level folders: trunk, branches and spikes.
What's the meaning of this term?
7
votes
2answers
1k views
How to ignore CVS keyword tags in eclipse diff
As much as i like the eclipse diff/merge perspective, when dealing with large projects and multiple branches that need to be merged occasionally there's one feature missing:
Is there any way to set ...
6
votes
1answer
87 views
Going retro: Learning CVS, coming from SVN
I've used Subversion since (insert year from early previous decade) but now am at a company using CVS. There are plenty of how-to guides, tutorials, cheatsheets, etc for people going from old version ...
6
votes
9answers
907 views
Versioning SQL Server DDL code
I'd like to have all DB DDL code under CVS.
We are using Subversion for our .NET code. But all Database code remains still unversioned.
All we know how important DB logic can be. I've googled ...
6
votes
2answers
2k views
What is CVS “pserver” mode?
Could someone tell me exactly what the "pserver" mode is, in regards to CVS? The term "pserver" is used frequently, but I've yet to find an explanation of what it actually is. If "pserver" is a ...
6
votes
10answers
860 views
What version control system is best designed to *prevent* concurrent editing?
We've been using CVS (with TortoiseCVS interface) for years for both source control and wide-ranging document control (including binaries such as Word, Excel, Framemaker, test data, simulation ...
6
votes
1answer
385 views
CVS checkout ignore corrupted files
Is there a way to have CVS checkout everything and if it hits corrupted files it will just skip them and go on?
6
votes
3answers
453 views
Any reasons to still use CVS?
Given that Subversion has basically been written to replace CVS, are there any compelling reasons at this point to continue using CVS for version control?
6
votes
7answers
12k views
How can I list files in CVS without an initial checkout?
How can I list files CVS without an initial checkout?
In subversion I can simply do "svn ls http://svn.svn.com" in CVS how can I do this?
For example I've got this CVS connection:
...