clearcase

Problems with clear case plugin eclipse

为君一笑 提交于 2019-11-26 14:25:50
问题 I have a following problems with eclipse, when I installed ClearCase plugin from this url http://www3.software.ibm.com/ibmdl/pub/software/rationalsdp/clearcase/60/update/windows/ : Has anyone experienced the similar problem? I'm using Windows 7 and eclipse galileo. I've installed the plugin from this URL, what can I do to work this problem out? For those who can't see tinypic images +----------------------------------------------------------------------+ | Connect to the Rational ClearCase

In ClearCase, how can I view old version of a file in a static view, from the command line?

对着背影说爱祢 提交于 2019-11-26 13:50:14
In a static view, how can I view an old version of a file? Given an empty file (called empty in this example) I can subvert diff to show me the old version: % cleartool diff -ser empty File@@/main/28 This feels like a pretty ugly hack. Have I missed a more basic command? Is there a neater way to do this? (I don't want to edit the config spec - that's pretty tedious, and I'm trying to look at a bunch of old versions.) Clarification : I want to send the version of the file to stdout, so I can use it with the rest of Unix (grep, sed, and so on.) If you found this question because you're looking

How to bridge git to ClearCase?

青春壹個敷衍的年華 提交于 2019-11-26 12:47:59
I've recently used git svn and enjoyed it very much. Now I'm starting a new project at a different customer. At that site the SCM of choice is ClearCase. I haven't found a baked equivalent of git svn for ClearCase. Is there anybody who has tried to use git locally as a front-end to ClearCase using some tricks, configuration or scripting with any measure of success? If so can you please explain the method used? Matt Curtis Here's a method that avoids hijacks, which our team used this method quite successfully for over a year, until we retired ClearCase for Subversion (per company policy,

how to find out all the activities happend in a branch in the last month?

a 夏天 提交于 2019-11-26 12:32:49
问题 My problem is that The code in the branch I\'m working in for some reason is corrupted now , but I didn\'t make any label in the branch so It\'s hard to \"roll back\" the code to a valid status. But I\'m sure a month ago the code is in the quite healthy status , so I\'d like to know all the activities happen in the branch in the last month then I can manully roll back each activity . So As title, could any one of you tell me how to list all the activities happend in a branch in the last month

ClearCase UCM - best practices using components

一个人想着一个人 提交于 2019-11-26 12:17:24
问题 We are migrating a fairly large codebase from VSS to Clearcase w\\ UCM and are considering organizing our source into one or more components within a single project. What best practices\\potential pitfalls should we keep in mind? The source is organized into layers (data layer, business layer, GUI layer). The team is fairly small, developers tend to own a certain layer of the codebase and we anticipate a fair amount of branching due to parallel development efforts. 回答1: Single most dangerous

Any way to use a custom diff tool with cleartool/clearcase?

两盒软妹~` 提交于 2019-11-26 12:10:25
问题 I\'d like to use my own diff when working in a clearcase snapshot view. As far as I can see, there is no way to specify a diff tool when running \" cleartool diff \", so I was thinking I could run something like \" mydiff <predecessor file> <modified file in my view> \", but I don\'t know enough about ClearCase to be able to find the \"predecessor file\" to diff against. Any way to do this? Forgot to mention (until now, after reading the first two responses dealing with windows) that this is

Clearcase UCM - Cross delivering vs. delivering upwards?

旧时模样 提交于 2019-11-26 11:38:09
问题 We have two Clearcase UCM streams in a hierarchy at the same level (i.e. same parent stream). If the two child streams are both rebased to the same parent baseline, does that mean that Delivering the activities of both streams up to the parent (one, then the other) Would be equivalent to: Delivering the activities of one child stream to the other child stream, and then simply delivering the one child stream to the parent Is this in fact true? It seems it should be, assuming any manual/user

Delete ClearCase Views Script

跟風遠走 提交于 2019-11-26 11:33:01
问题 (This is a repost of a deleted question) (on request) What is the best ClearCase View deletion Script? I found the following on http://www.cmcrossroads.com/forums?func=view&id=44045&catid=31 written by Yossi Sidi below The 2 things this script misses are the deletion of the entries in the session.dat file for CCRC views and the cleaning of server view storage and cached file directories. The manual steps can be found here: http://www-01.ibm.com/support/docview.wss?uid=swg21172246 rmview.pl ==

Recursive checkin using Clearcase

☆樱花仙子☆ 提交于 2019-11-26 11:18:58
问题 I want to check in a directory and all the sub-directories into the clear case. Is there a specific command to achieve it? Currently I am going into each directory and manually checking in each file. 回答1: I would recommend this question: Now the problem is to checkin everything that has changed. It is problematic since often not everything has changed, and ClearCase will trigger an error message when trying to check in an identical file. Meaning you will need 2 commands: ct lsco -r -cvi -fmt

Command line to delete all ClearCase view-private files

▼魔方 西西 提交于 2019-11-26 11:03:20
问题 I\'m looking for a command line to remove all view-private files and directories from a ClearCase view on Windows. I have Cygwin available as well. The script available at this article is not quite what I want, since I\'m working with a large number of files and want to delete them all without having to select each one. 回答1: A few remarks: ct lsprivate is great for dynamic views, not snapshot views ct ls -rec -view_only as well as ct lsprivate also list your checked-out files... I am not sure