wincvs

How can I revert a whole project to an earlier tag in CVS?

社会主义新天地 提交于 2019-12-25 08:57:25
问题 I have a poject that has thousands of files. I made some changes that affected almost half of the files. the changes included editing existing files and adding new files and directories. I need to revert all these changes and restore the project to how it was. I have created a tag before doing all this but I am not sure how I can restore the whole project from the tag 回答1: This is unfortunately the kind of thing that CVS is particularly not good at. I do not believe that you can lose the

Using the nested element module in cvs task in ant build.xml

蓝咒 提交于 2019-12-12 17:43:19
问题 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" dest="${basedir}" package="My Test Project"/> I learned from the ant website( http://ant.apache.org/manual/Tasks/cvs.html ) that we may Use a nested <module> element if you want to specify a module with spaces in its name. This specifies a package/module to work on, unlike the package attribute, modules

Get revision number of a tagged file in WinCvs

我与影子孤独终老i 提交于 2019-12-08 17:24:48
问题 This seems like it should be so simple, but I can't find any solution that appears to work... I need a CVS command that given the name of a tag that you have applied to a file, it will give you the revision number. CVS Tree structure: (filename) | +--> 1.1-----(branch) | | | 1.1.1.1---(tag1) | | | 1.1.1.2---(tag2) | | | 1.1.1.3---(tag3) | | | : 1.2 | | : For example: Using a CVS command, given the tag name "tag2", how can I get CVS to give me the revision number "1.1.1.2"? The closest thing I

How to track CVS Check-Ins

家住魔仙堡 提交于 2019-12-07 14:33:49
问题 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 CVS. What is the command for this ? 回答1: From the command line: cvs log -r BRANCHNAME Do do it for a certain date-range: cvs log -r BRANCHNAME -d "1972-09-24" Where 1972-09-24 is actually your date you'd like to get items newer than. 来源: https://stackoverflow.com/questions/2781066/how-to-track-cvs

What's the best CVS client for Windows? [closed]

十年热恋 提交于 2019-12-03 14:45:18
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . 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

What's the best CVS client for Windows? [closed]

为君一笑 提交于 2019-12-03 05:31:06
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. 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 suggest? TortoiseCVS with WinMerge ? Note: OSS preferred :) On