clearcase

Rational clearcase client integration with Eclipse

风流意气都作罢 提交于 2019-12-01 08:40:45
I am using Eclipse 3.2.0 and Rational clear case client 7.1.2 on my local machine. I want to install plugin for same (Rational clear case client 7.1.2) on eclipse. Can someone please give me download link for Rational clear case client 7.1.2 plugin and also gide me in integrating it with eclipse? Thanks, Tushar. VonC For a CCRC installation (ClearCase Remote Client, which comes with its own Eclipse-based RCP - Rich client Platform - for ClearCase): See " Installing or updating CCRC for Eclipse and RSA " (and its process here ) (See also the compatibility matrix between Eclipse and CCRC) The

ClearCase delete view private files only

99封情书 提交于 2019-12-01 08:40:41
Is there any was to delete only view private files in CC dynamic view. There are a bunch of eclipsed files and view private files in my view. I need to delete only view private files and retain checked-out and eclipsed files. I tried following - cleartool ls -r | grep -v eclipsed | grep -v checkedout | xargs rm -v But looks like eclipsed files are listed twice with cleartool ls . So it deletes eclipsed files too :( cleartool ls -r produces two outputs for an eclipsed file in dynamic view. src.mk src.mk@@ [eclipsed] So deleting with cleartool ls -rec | grep -v "Rule:" | grep -v "eclipsed" |

Find if current stream contains baseline in ClearCase

孤街浪徒 提交于 2019-12-01 08:17:49
问题 Let us say I have a baseline called A1. What I then want to see if there is any way for me to be on another stream, anywhere in the same project, to see if I have A1 in my stream? I.e. do I have the code changes made in A1 in my stream? Is there any fast way to do this? Thank you in advance. 回答1: ClearCase works based on activities, and you should determine is an activity has been delivered by using cleartool lsact -contrib : See "Activities delivered since the last baseline", and a more

how to map network drive for Clearcase View in Windows service?

不问归期 提交于 2019-12-01 08:03:11
问题 I want to map a clearcase view on network drive inside a windows service. I have tried with net use command, but it did not work properly. 回答1: You should be able to run the same kind of command than the one used when paths are too long, which is subst : subst X: c:\path\to\my\View # for snapshot view subst X: M:\myView # for dynamic view in order to map a view to a drive letter. This should work from within a service, provided: you are using your Windows account (and not the "Local System

Find merge arrows pointing to a version in ClearCase

你。 提交于 2019-12-01 08:02:34
I want to find all the merge arrows pointing to a certain version in a script. When I describe the version of the element with the following command: ct describe filename@@/main/some_branch/3 I get in the result the following: Hyperlinks: Merge <- filename@@/main/other_branch/2 I want ct describe to output only the relevant information to be used in my script, ie. the versions where the merge arrows come from. In my case, the output should look simply like this: filename@@/main/other_branch/2 I didn't find any relevant parameters in the -fmt from the man page. Is there any way of doing it?

What's the best way to migrate from SourceSafe to ClearCase?

亡梦爱人 提交于 2019-12-01 07:55:43
问题 We currently have a fat SourceSafe DB with ten years of code in it. We're looking for an easy and stable way to import all of this in to a new Clearcase/Jazz environment. What is the best best method of doing this and are there any tools out there to do this automagically? 回答1: I know this doesn't answer your question directly, but we had a similar problem several years ago when we moved from VSS to Perforce. We looked at the ways in which we could migrate the histories for all the files, but

How to hide folders except mentioned in config spec?

早过忘川 提交于 2019-12-01 07:48:25
问题 We are trying to have only few folders in our dynamic view. For that we have written clearcase config spec like below. element * CHECKEDOUT element /Process/Projects/OurProject\... /main/LATEST element "/Process/Projects/OurProject 100/..." /main/LATEST element * /main/LATEST But it displays all the other folder also , only thing is we are not able to open those folders. Is it possible to hide the all other folders which are not mentioned in config spec ( I know that in snapshot view we can

ClearCase delete view private files only

夙愿已清 提交于 2019-12-01 07:42:05
问题 Is there any was to delete only view private files in CC dynamic view. There are a bunch of eclipsed files and view private files in my view. I need to delete only view private files and retain checked-out and eclipsed files. I tried following - cleartool ls -r | grep -v eclipsed | grep -v checkedout | xargs rm -v But looks like eclipsed files are listed twice with cleartool ls . So it deletes eclipsed files too :( cleartool ls -r produces two outputs for an eclipsed file in dynamic view. src

How to get the recent baselines of a project in clearcase

十年热恋 提交于 2019-12-01 07:29:34
问题 Can we get the list of baselines of a project in clearcase within in a certain time period, say, last 6 months. 回答1: The cleartool lsbl command usually lists baselines: per streams from the oldest to the most recent If you can restrict your search to one stream ( ct lsbl -stream ... ), you need to list everything and then filter the result. You can use the fmt option to display only the name of the baseline and its date. cleartool lsbl -fmt "%d %n\" -stream... You would get results like: 2007

Rational clearcase client integration with Eclipse

ε祈祈猫儿з 提交于 2019-12-01 06:54:24
问题 I am using Eclipse 3.2.0 and Rational clear case client 7.1.2 on my local machine. I want to install plugin for same (Rational clear case client 7.1.2) on eclipse. Can someone please give me download link for Rational clear case client 7.1.2 plugin and also gide me in integrating it with eclipse? Thanks, Tushar. 回答1: For a CCRC installation (ClearCase Remote Client, which comes with its own Eclipse-based RCP - Rich client Platform - for ClearCase): See "Installing or updating CCRC for Eclipse