clearcase

Error while updating ClearCase snapshot view

Deadly 提交于 2019-12-19 04:17:28
问题 I have one user (only one, all the others are fine) trying to update their ClearCase view. It has worked for them for the last 6 months up until today. When they update, they get: Unable to read directory "." Permission denied Errors were encountered in loading "\VOB" I did a " gpresult " and it seems like they are in the correct groups and the stream is not locked for him. CC Doctor isn't coming up with any errors either. Nothing has been known to change since he last used CC on Friday. Are

What is the difference between clearcase and vss in label a release?

天涯浪子 提交于 2019-12-18 09:36:09
问题 We are using clearcase as our SCM. I have not much experience with clearcase. Now we are about to release our code to production. I want to label my code as I have done using VSS in my previous projects. But in clearcase labeling is not as easy as in VSS. clearcase is asking to create a label type before label a folder in VOB. I don't understand the concept of creating label type? Any guidance on this will be highly appreciated. 回答1: a lbtype is a template, a declaration. a label is the

What Clearcase eclipse-plugin to use in order to work on both clearcase 6 and 7 projects?

断了今生、忘了曾经 提交于 2019-12-18 09:11:37
问题 Using Eclipse 3.5, what clearcase plugin to use in order for me to work on both clearcase 6 and 7 projects? 回答1: I confirm the latest version of the IBM ClearCase Eclipse plugin presented here on the IBM site does work with eclipse3.5 even though it is for eclipse3.4 support CC6 and CC7 You just need to be careful about: your \HKEY_LOCAL_MACHINE\SOFTWARE\SourceCodeControlProvider\ value your Extension Location link. Note: the official IBM download page for this plugin seems unavailable at the

cleartool list activities since last 7 days

拥有回忆 提交于 2019-12-18 08:57:49
问题 We use ClearCase UCM which has multiple Vobs (10). How to find the activities for past one week? Or list activities between two date ranges? 回答1: It is a bit trickey, because all cleartool lsactivity commands are limited to one pvob ("project vob" or "special vob with UCM metadata in it"): cleartool lsact -invob \my\pvob -stream ... And an activity can be reused (meaning an old activity can have in its changeset very recent versions) If you have two baselines, you can easily diff them (by

ClearCase: When using clearfsimport to perform a reset merge, how can I keep it from creating evil twins?

試著忘記壹切 提交于 2019-12-18 07:16:11
问题 I had the same question as posted here: Cleartool findmerge select changes from file 2 by default in all cases? I tried the recommended fix (performing a clearfsimport from the source view to the destination view). I did this by (on Linux) setting a dynamic view for the destination, cd-ing into the VOB tag, then using /view/[source_viewname]/[vobname]/* as the source for the clearfsimport . The problem with this is that it attempts to create evil twins, which doesn't help the situation. Are

CC delete option from CC explorer

泄露秘密 提交于 2019-12-18 07:10:08
问题 I was wondering which command is executed internally when we select 'Delete' from Clearcase explorer context menu. Is it rmname, rmelem or rmbranch? We use base CC. I am a developer and since I don't want to do any removal related experiments within our CC setup, I decided to ask the question here. 回答1: It is cleartool rmname. It will checkout for you the parent directory, derefence the file (rmname) and checkin the parent directory. See "About cleartool rmname and checkouts" The Delete

Reverse Changset of an activity in Clearcase

狂风中的少年 提交于 2019-12-18 07:06:30
问题 I have a requirement posted by the development team to reverse all changes in a given UCM activity. Constraint being we do not have delete rights. Meaning I know I can do a lsactivity to list all elements in an activity with their respective versions and then in the easy world would be able to delete those versions. But the SCM policy does not permit us to delete/ rmver anything. So I am left with back merging 1 version back. Meaning let us say I have version 5 of a.java checked into an

Reverse Changset of an activity in Clearcase

旧时模样 提交于 2019-12-18 07:06:02
问题 I have a requirement posted by the development team to reverse all changes in a given UCM activity. Constraint being we do not have delete rights. Meaning I know I can do a lsactivity to list all elements in an activity with their respective versions and then in the easy world would be able to delete those versions. But the SCM policy does not permit us to delete/ rmver anything. So I am left with back merging 1 version back. Meaning let us say I have version 5 of a.java checked into an

Recommendation on Tools to migrate from Clearcase to SVN? [closed]

喜夏-厌秋 提交于 2019-12-18 06:06:25
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I'm on the lookout for tools to migrate from ClearCase to SVN. Ideally would like to get all history information, or as much as can be acquired. Incremental merges would be very beneficial but isn't required. 回答1: This looks about the best. Polarion's business is SVN, so I guess they have a vested interest in

Create clearcase dynamic view using CAL in C#

元气小坏坏 提交于 2019-12-18 05:24:18
问题 I'm trying to create a clearcase dynamic view using CAL in C# using the following code. private static ClearCase.ClearTool ct; string viewName = "tmp_view"; string cmd = "mkview –tag "+ viewName + " –stream " + selectedStream +"@"+ projectVob + " \\\\<Network Shared Path>\\"+ viewName +".vws"; ct.CmdExec(cmd); On execution, ct.CmdExec method throws exception saying viewTag must be specified. For the same cmd string I'm able to create a view using cleartool command prompt. Can you please tell