How can I checkout only the directory structure of a project (without any files) in a CVS repository? This could be useful, e.g., to know the structure itself, and selectively checkout the folders later. I might not be interested in, say, the test cases folder which might take too much space on my local hard disk.
...
I'm trying to make an update of one project of mine, but i don't manage.
When I try, I get the error
'Synchronizing CVS' has encountered a problem.
Problems reported while synchronizing CVS Workspace. 0 of 1 resources were synchronized.
Details:
Problems reported while synchronizing CVS Workspace. 0 of 1 resources were synchronized.
...
What is the best approach to implement access control on CVS repositories hosted on a Linux server? The goal is to prevent accidental deletion of modules by developers. The developers should be able to do all other CVS activities.
...
Please, tell where to find free SCC provider for CVS. Because TestComplete, as i have understood works only through SCC.
Thank you.
...
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?
...
Someone once showed me a cool IntelliJ Idea plugin that would show all the user commit information from CVS right there in the Java source editor.
It had a vertical bar on the right of the window and every code block changed/committed by a user was highlighted with different color and mouse-over would show the details about user and ve...
I am using CVS and after a merge, I have hundreds of conflicts. None of the conflicts are an issue (they're unimportant changes as a result of keyword expansion differences on the trunk and branch).
I know no changes have been made to the files as this is simply a merge of a vendor branch into the trunk. A few dozen files have been ...
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:
pserver:[email protected]:/cvsroot/evocms
How can I list all files in it?
UPDATE:
I'm doing this:
c:\>set CVSROOT=pserver:anonymou...
Introduction and Background
We are in the process of changing source control system and we are currently evaluating git and mercurial. The total code base is around 6 million lines of code, so not massive and not really small either.
Let me first start off with a very brief introduction to how the current repository design looks. Pictu...
Hello!
I'm converting a large, multi-project CVS repository into Subversion using cvs2svn. It's working really nicely, but there are a few CVS projects that really ought to be branches of other projects.
Using an options file I'm able to specify that the trunk of project 'ShouldBeBranch' should be placed in '/OtherProject/branches/Shou...
I have a Rails app that is stored in CVS because that is our corporate standard. It needs to be deployed to a single production server that is running Rails using Apache and Phusion Passenger.
About the production server:
RedHat Enterprise Linux 5.1
The app is used internally at our company, not hosted externally.
I have root acce...
I've got several projects:
P:\Projects\Common
P:\Projects\App1
I originally added each of the folders (and their sub folders) to CVS (using Tortoise).
Now I want to be able to just right clock Projects\ and "Commit" everytime I save anything in those folders.
However, it seems that \Project is separate from \Common which is also sepe...
Hi,
I have a html file that contain some Greek characters, and whenever I try to commit it I got:
commitlog: file="dummy.html" appears to be a BINARY
commitlog error: file="dummy.html" appears BINARY but checked in as ASCII
cvs commit: Pre-commit check failed
I am using:
cvs add -kk dummy.html
cvs commit dummy.html
Is there any way ...
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?
...
Hi All,
I am trying to find an easy way to see what files I have modified in my checked out code by running either cvs update or cvs status and limiting the output to the files I have modified.
I started by doing variations on:
cvs update | grep "M " // this did nothing useful.
cvs update | grep -e "M " * // this got me all the files...
When I do a cvs status of my project I get different revision numbers for different files. What is happening here? Should not all the files have the same revision number?
...
I tried several Python IDEs (on Windows platform) but finally I found only Eclipse + PyDev meeting my needs. This set of tools is really comfortable and easy to use. I'm currently working on a quite bigger project. I'd like to have a possibility to use CVS or any other version control system which would be installed on my local harddrive...
Is it possible to transfer a repository from CVS to SVN one branch/tag at a time?
Because each branch is currently a different project, I would like to be able to transfer the branches one at a time (when there is little activity on a specific branch).
Eventually the branches will all exist in the same svn repository.
...
Hi -
I'm currently working with partner on a PHP project.
We both edit directly to a local server (all files are stored on the server, which is also running a WAMP stack).
I'm looking for an SVN client that will monitor and save all changes to the htdocs folder, and will update a remote SVN repository, through the web.
It would be a g...
Say I have 3 files foo.txt, bar.txt and moo.txt all at revision 1.
Say I commit foo.txt and bar.txt ten times. So they are at revison 1.10. Since in SVN there is a single revision no moo.txt also has to be at revision 1.10. Now if I see the history of moo.txt then, will I see the history of commits from 1 to 10?
The reason I am asking ...