Tagged Questions
The wincvs tag has no wiki summary.
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 ...
2
votes
1answer
56 views
Using the nested element module in cvs task in ant build.xml
I have problems connecting to CVS using ant build.xml.
I figured out the reason was whitespaces in package attribute of CVS task as:
<cvs cvsRoot=":pserver:user@xx.xxx.xxx.xx:/CVSREPO_CCP_MIG" ...
1
vote
2answers
503 views
CVSNT install hangs forever in Windows XP 64-bit
I need to access some source code stored on SourceForge using CVS.
I used (many computers ago) to use WinCVS, so I downloaded it from SourceForge and installed it on this machine, which runs Windows ...
1
vote
1answer
376 views
WinCVS - Python - TCL
I have got a list of files in txt files and I need to check them out in edit mode, and make some changes(there are word documents), and check them back in via WinCVS.
I know I can write tcl scripts ...
1
vote
2answers
264 views
CVS check out eariler date
Am using WinCVS, need to check out the whole project branch as it was on an earlier date... How would i do it....
Thanks a lot,
Vinod.
1
vote
1answer
134 views
How to track CVS Check-Ins
We recently created a branch out of the main branch of our code for the beta.
Now I want to check what all files have changed in the branch in the last one week. How to get that information out of ...
1
vote
3answers
91 views
cleanup batch file
I'm writing a batch file to cleanup my source folders. I want to delete all wincvs generated files with a prefix of .#
FOR /F "tokens=*" %%G IN ('DIR /B .#*.*') DO DEL "%%G"
the problem I'm having ...
0
votes
0answers
30 views
How to make WinCVS show only Unmodified files
I'm using WinCvs 2.0.0.2 (Build 2).
How can I make it filter, to show only files that are:
known to CVS
not modified
Things I've tried
Filters
I've looked at all the filters at the top in the ...
0
votes
0answers
21 views
How to: Skip entering password for every WinCVS action
Question: How to: Skip entering password for every WinCVS action?
Answer: Please visit link below for the solution, I made some tweaks and find it working so sharing with you all after uploading ...
0
votes
1answer
50 views
CVS: How to re-add a file as normal type when it was initially added as binary
I have a small problem that would seem to be easy to solve, but I am having trouble doing so. Using CVS/WinCVS, a file was added as binary that should not have been added. I want to correct this and ...
0
votes
2answers
51 views
How to use a CVS repository locally?
Is it possible to use (Win)CVS as a local repository? I don't need a multi-user configuration with sharing a repository on a server (I've been using WinCVS for years in a team, and it worked fine for ...
0
votes
0answers
27 views
Configuring WinCVS for standalone development
I am going to use WinCVS on my personal machine (no server). How do I configure this s/w to achieve this?
I am using version 2.0.2.4
Thank you
0
votes
2answers
85 views
Renaming Folder in wincvs
I was having a folder named as 'subFolder' inside 'mainFolder' in wincvs.Now I decided to rename this folder as 'subfolder' to make all the letters in lower case.So I have deleted all the contents ...
0
votes
0answers
18 views
WinCVS display files that need to be updated?
My WinCVS will show me files that I have changed and therefore need to be committed.
I'd like WinCVS to show me files that have been changed by someone else, and therefore need to be updated by ...
0
votes
0answers
36 views
CVS User based Check-out
Is there a way to checkout specific user committed files for a single module. I want to checkout the files committed by a single user for a specific module.
0
votes
1answer
143 views
WinCVS commit corrupt word files
I commit a MS word file in CVS Server using WinCVS. I selected the add option as Text. whether it should be added as binary format. Now I checked out my files. when i tried to open those files. it ...
0
votes
1answer
322 views
WinCvs Client setup
Dear all, I am using gcvs-1.11 version. My cvs server in RHEL ,i have some RHEL machines and some Windows Xp machines as client.RHEL cvs clients are working fine but from windows i couldn't able to ...
0
votes
1answer
87 views
How can I checkout only modified files from cvs-server using tortoiseCVS
I need to checkout the files modified by developers. I tried Date command but it check-out the whole project. But i need only modified file for my patch with directory structure. Is there any way to ...
0
votes
1answer
72 views
How Concurrent Versioning System (CVS) detects changes during commit?
Say you check out a directory of 100 files. You edit 5 of the files, and you go to commit the directory back. How does CVS know which of the 100 files were modified (not all of them were)?
0
votes
2answers
234 views
how to obtain code from repository using WinCvs
I got a CVS connection string, here it is :
:ssh;username=dummy;password=dummy;hostname=repos.mooo.com:/home/projects/repos
How can I get project code using WinCvs, I've just installed it and I ...
0
votes
3answers
235 views
Mass conflict resolving
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). ...
0
votes
3answers
573 views
Creating CVS view from branch with empty directrories
I am using cvs -tag -b "abcdefg" command to tag-branch in my CVS. My cvs repo has an empty directory "obj" in every folder.
Whenever I use the command cvs co -r "abcdefg" REPO, I get a complete repo ...