cvs

How do I remove the -C parameter from cvs update in a Hudson build

Hi, I can't find where I can configure the parameters that hudson uses in CVS checkout and update. I have a situation where I modify build properties file locally before I kick off a hudson build. However because the cvs update contains a '-C' it overwrites my local changes. Do you know of a way where I can remove this? Any help mu...

How to Close a CVS Module

I there a way to tell all users not to use a CVS module (i.e. project) anymore? Something like an "end of production" or "moved to ..." flag? I mean other than deleting all the files in the module as my co-workers like to do. ...

Determining the datetime of a specific tag on a specific module in CVS

I need to determine the exact date/time of a specific tag on a specific module in CVS. Can you please help me how can I do this - using eclipse CVS plugin especially? Thanks in advance. ...

Moving cvs repository to a new machine

We have a CVS repository on machine 'A'. Want to copy a specific directory to machine 'B's CVS with all the history from 'A'. The problem is I can only access CVS on machine 'A' using Eclipse only (dont have access using Unix). Is it possible to do that using Eclipse? ...

What other repository systems have cvs's -D (date) option?

I recently stumbled upon a cool feature in CVS where you can name revisions by date, e.g.: # List changes made between the latest revision 24 hours ago and now cvs diff -D "1 day ago" Do any other repository systems (e.g. Git, SVN, Bazaar, Mercurial, etc.) have an option like this? ...

Can drush (drupal) do CVS checkout?

I'm using drush, which supposedly can be used instead of a cvs program to checkout from the drupal repository. All tutorials I've found don't mention drush, instead they start with cvs. cvs -z6 -d:pserver:anonymous:[email protected]:/cvs/drupal checkout -d cms -r DRUPAL-6 drupal How do I change this command so it's compatible ...

How to get local snapshots of the CVS repository

I need to set up some kind of read-only CVS repository mirror. The aim is to get snapshots of the project by schedule and store it on a windows box. Could you suggest best way to do it? I don't actually have to use CVS on local. Our team works with Subversion. And if it possible to check out from CVS to SVN it would be even better. Beca...

How do we add a whole repository and not file by file in CVS??

Hello I am using a custom library which has a lot of files. Now in order to use that library I need to add all the files of that library to the local CVS. So when I cvs update, it shows me all the files that are unavailable on CVS, and this library has a lot of files. So I have to cvs add first to add files to cvs and then commit. Is the...

CVS comma-v files in Attic and directory

I have a production CVS repository that is a number of years old and have noticed that it has comma-v files with the same name in both Attic and in the actual directory for a given location. This appears to be an error. My question is how can this occur in the first place and what will CVS do when duplicate files exist. My guess (hope)...

CVS checkout based on a file

I want to checkout a bunch of files from a CVS server. Is there a way I can pass cvs command a file name which contains files I want to checkout Is there another way of accomplishing that ? ...

Is CVS with Eclipse using the command line possible?

I've been using Eclipse to do CVS checkout from within the Eclipse interface. Is it possible to do it using the command line just like any normal CVS program? When I type CVS in my command prompt now, I get the usual cvs is not recognized as an internal or external command but CVSing should be possible since it's part of Eclipse. Do ...

How can I list all modules in a CVS repository?

Is there a command that returns a list of module names contained within a CVS repository? Being a newbie to CVS, I imagine that there should be something along the lines of cvs -d /usr/local/cvs listmodules What should I substitute listmodules with to get a list of all modules within the CVS repository? To address Dewfy's comment,...

Efficient way of cvs committing with cvs update if needed?

Firstly, where I work we're forced to use CVS and don't have any other choice. I personally use git. Sometimes I don't always do a cvs update on a module but I'll download the actual file off the production server which is guaranteed to be the latest ( 99% of cases ). I end up doing a cvs commit to find I failed to update so th...

Deny Ability to Retag / Move Tag in CVS

Does anyone know how I can force CVS to not allow users to move tags within CVS? I've seen some documentation about the taginfo file in CVS, but I don't currently understand how to use it. My current objective is to use a filter within the taginfo file to redirect all retags / move tag requests to a script that automatically exits wi...

No files are being checked out on a CVS checkout

Hello I installed a CVS server today. I installed cvs server using sudo apt-get install cvsd. Now the folder where everything is stored is /var/lib/cvsd/cvsrepo/test. Folder test contains a dummy text file by the name check.txt, which would prove everything works fine. My CVSROOT on the client machine is ":pserver:username@localhost:/cv...

CVS is owned by a user, but when files are imported into it, "root" is declared as the owner of those files.

Hello I have just installed CVS server and have started importing files onto the server. How would I change the owner directly while file transfer or make the user the default owner of all the files being imported. Is that possible? ...

Which SCM can comfortably handle 90,000 files

I have a folder which contains a whitelabel-esque system; theres way over 90,000 files in there. Currently its stored in SVN and we just checkout the sub-folders as required. Would mercurial or another SCM be able to handle having the lot checked out at once without it dying when you try to commit. ...

Easy to use revision control for one person

I use revision control tools to handle ever changing versions of my webpage, LaTeX documents, as well as actual source code, but I don't think I'm doing it right. I used cvs for a while, then git more recently, but I'm not really happy with them, possibly because I'm using them incorrectly. I'd like some advice on how to use them corre...

C# code to monitor a CVS repository for changes

Is there a way to monitor a CVS repository for any commits? Then on a commit, to download all the files within the changeset, along with their respective paths within the repository? The reason is, I want to set up continuous integration between a CVS repository and a development server, which can only be accessed via FTP. Before uplo...

How to check existance of the CVS tag?

I need to write a shell script to check the existence of certain CVS tag in the repository, and do different things depending on the result. So hence is my question: How to check for CVS tag existence and parse the result in shell script? ...