|
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:anonymous@evocms.cvs.sourceforge.net:/cvsroot/evocms
How can I...
Started by dr. evil on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Not support the ls command then you can try
cvs checkout -c
which will only dump the list of predefined) of that folder:
cd Temp cvs -n up -d
This will emit (almost) the same output as an actual checkout withoutsee cvs....
|
|
Hi,
We have a server that we host web-solutions on, they are updatede on the server with CVS. About 4 people need access to the server and the ability to update the web-solutions through CVS.
When I checkout the web-solution the CVS/Root is set to :ext...
Started by Cederstrom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
You could then change your respective ~/.ssh/config files to include the correct user name for the CVS:USERNAME@ADDRESS:CVS-PATH
If this....
Couldn't you simply get rid of the USERNAME part and set your CVSROOT to :ext:ADRESS:CVS-PATH .
|
|
I am using WinCvs 2.0,using Admin dialog Box ,i login successfully by giving My CVS UserName & Password. but When i am trying to checkout the code using Remote dialog,checkout option ,i am getting following message ,Permission denial.Is there any one ...
Started by Navink2483 on
, 2 posts
by 1 people.
Answer Snippets (Read the full thread at linuxquestions):
Please check the permissions on the folder where you are checking out the CVS contents..
This could be permissions issues on your local system and not on the CVS server.
|
Ask your Facebook Friends
|
How can I get tab completion to work for selecting CVS modules under Linux (preferably using bash) ?
For example, "cvs co " + tab would list the modules I can checkout. I've heard it's easy to do using zsh, but still I didn't manage to get it working ...
Started by skinp on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It has some cvs completion in it, I'm not 100% if it can determine all the....
And the command to list modules on a CVSRoot is cvs -d "$the_cvsroot" checkout -c
Actually, as you guys saidThere is the Bash completion project.
At that.
|
|
When using TortoiseCVS, as I checkout a module, dialog (see screenshot ) telling me "Trouble launching CVS process", "The handle is invalid". Any idea on how this would be happening?
Started by Alessandro Vernet on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Reinstalling TortoiseCVS.
cvs? there was a bug reported with that description, according to google.
|
|
I’m trying to convert an existing Windows CVS repository to Mercurial and getting the following response and error:
C:\Windows\system32>hg convert c:\users\jeff\webs\shelter-cvs\shelter assuming destination shelter-hg initializing destination shelter...
Started by jalperin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The best you can do with just a checkout is to import, not the module ....
CVS checkouts (unlike mercurial checkouts) don't include full history.
You need access to the repo, not to a checkout of it.
Doing not possible.
|
|
What does -PAd mean when I use in conjunction with cvs update?
Started by Andrei Chikatilo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Http://ximbiot.com/cvs/wiki/CVS--Concurrent%20Versions%20System%20v1.12.12.1%3A%20Guide%20to%20CVS%20commands#SEC172
To find out what any command does use the Unix/Linux/OS X manual pages:
man cvs see node `Removing directories....
|
|
My company unwittingly switched from cvs to subversion and now we're all wishing we had cvs back. I know there's tools to migrate history and changes from cvs to svn and there's no equivalent to do the reverse. Any suggestions or ideas on how to do this...
Started by stu on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
Seriously, why would you prefer CVS to SVN....
Do not do this.
Not an upgrade.
Your options are probably realtivelyWell, subversion to cvs won't be exactly upgrading.
If you want to change checkout Mercurial, GIT, Bazaar.
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/ com/sun/java/jax_rpc_ri/
I think what happened was that these...
Started by matt b on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You should go the server console and update will always check out empty directories... .
CVS checkoutAFAIK CVS protocol does not allow to remove directories.
Removingdirectories.html
You don't remove the directory itself; there is no way to do that .
|
|
I'm reporting a series of commits from git to cvs with cvsexportcommit. I've found that it's impossible to add the VERSION file in the following context
| \_version/ | | | \_version.txt (to be removed) | \_VERSION (to be added)
The output I get is the...
Started by Elia Schito on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
By the way now cvs complants about not finding the (old) folder....
What platform is your CVS server running on? AFAIK, some versions of CVS (at least on Windows NT different commits: one for the folder deletion and one for the added file.
|