clearcase

full clearcase history for gource

[亡魂溺海] 提交于 2019-12-07 23:22:20
问题 I have tried to get the full history of a clearcase vob to parse it and use it with gource to get a visual representation of the changes, but I do not find the right commands to get an easy log history to parse with clearcase2gource python script. I do not use UCM, there are no streams, just plain cleacase. With this command I get elements with @@ in the middle of a path: cleartool lshistory -fmt "Element: %n| Date: %d| User:%u| Operation: %e| Object:%[type]p| SimpleType: %m| OperationKind:

How to see eclipsed files on ClearTeam Explorer?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-07 22:04:49
问题 I have an eclipsed file in my ClearCase dynamic view. If I use ClearCase Explorer, I see it's eclipsed (the yellow moon icon). If I check the command-line, I see it's eclipsed indeed. When I use ClearTeam Explorer, it does not specify it's eclipsed (no text, icon or something like that). Since I tend to use the new explorer, I'm wondering how it should work on this situation? 回答1: It can depend on your ClearTeam version (release notes for 8.0), since CM API support for dynamic views The

Derived objects in Clearcase

北城以北 提交于 2019-12-07 20:56:09
问题 I want to ask what is exactly the derived object in ClearCase and how is work. Additional i want to ask if there is an other program with the same function, because in Git, MKS or in IBM® Rational Team Concert™ i cannot find something similar, is it obsolete ? 回答1: This is quite linked to dynamic views, which are very specific to ClearCase and not found in other more recent VCS. See "ClearCase Build Concepts" Developers perform builds, along with all other work related to ClearCase, in views.

Automatic merge in clearcase using cleartool findmerge command

狂风中的少年 提交于 2019-12-07 17:51:58
问题 I'm writing a script to automate some merge operations and I'd like to do it using this command: cleartool findmerge file_name -fver /main/branch_name/LATEST -merge -log NUL -c "Automatic merge" The thing is, sometimes I get this message and I have to press enter to continue the process: Needs Merge "file_path" [to _branch_ from _another_branch_ base _yet_another_branch_] Any way to avoid this? 回答1: The problem with findmerge, as this technote describes, is that it can report back

How to change the group name in view dir (*.vws) since primary group in pvob is changed?

空扰寡人 提交于 2019-12-07 17:30:29
I have a problem changing the group name in (*.vws) directory of the view since the cc primary group is changed on Pvob. It is not blocking me since I am the owner but my collegue is not been able to deliver in my view. Thanks for any help I usually use fix_prot (see " About fix_prot ") On Windows: doskey fp=c:\Rational\ClearCase\etc\utils\fix_prot.exe -force -chgrp "TheNewGroup" -chown yourID $* fp -rec -chmod 775 \\path\to\view\storage\yourID\yourView.vws fp -root \\path\to\view\storage\yourID\yourView.vws On Unix: alias fp=/path/to/ClearCase/etc/utils/fix_prot -force -chgrp "TheNewGroup"

ClearCase Remote Client CLI?

早过忘川 提交于 2019-12-07 16:59:12
问题 I'm struggling with using ClearCase at my current job and it's a REAL pain, considering that we were using CVS last year. I'm trying to make a build server that downloads the code from ClearCase, compiles it and generates all the distributions. The build server must be RHEL5 and the ClearCase server is a Windows machine, so I don't think using normal ClearCase client would be an option. Is there any possible way of having a ClearCase CLI client that just downloads the code? I'm looking into

How to move views from a ClearCase registry to a new ClearCase registry

怎甘沉沦 提交于 2019-12-07 16:44:29
I have only one ClearCase registry. But I need to create another one in order to enhance the security. Unregister the vob and register it in the new registry is easy, but how can I move all the views?? I'm talking about two thousand views. So, I need a mechanism to move ALL the views of one vob to a new registry. Is it possible? Basically, you need to have a script which would: rmtag unregister mktag register again (from rgy_admin :) But that would render the views inoperable: the users would have to delete them (simple delete, no mkview required), and rebuild the view.dat (for snapshot views)

cleartool error: Unable to rebase stream

不问归期 提交于 2019-12-07 16:15:35
Can't rebase stream to the foundation baseline. Probably the baseline is corrupted. Is it possible to fix this baseline? cleartool: Error: Version map for baseline is unavailable. cleartool: Error: Unable to get unlabelled baselines in foundation cleartool: Error: Unable to determine if configuration is valid cleartool: Error: Unable to rebase stream First, are you sure to select the right baseline? If you select a composite baseline, it is per its nature unlabelled. Second, what version of ClearCase are you using? Is your project a multisite one? Your error message is seen in the IBM technote

How can i modify vob group in clearcase in windows?

左心房为你撑大大i 提交于 2019-12-07 15:34:29
My views are in none group but user and administrator is in clearcase group.so I am not able to access my vob in view server. How can i change my view group? VonC You would need to use fix_prot : see " How to change the group name in view dir ( *.vws ) since primary group in pvob is changed? " fix_prot [–f/orce] { –root [–r/ecurse] [–recover {–chown user | –chgrp group } | –replace/_server_process_group| [–r/ecurse] [–type { d | f }] [–chown user] [–chgrp group] [–chmod permissions] } pname … I usually define an alias first: doskey fp=c:\Rational\ClearCase\etc\utils\fix_prot.exe -force -chgrp

When commiting projects should I include .project & .classpath?

*爱你&永不变心* 提交于 2019-12-07 15:20:23
问题 When I commit a web appliction to source control should I also include the .project & .classpath files ? I don't think it should make any difference either way as other users who use the project should have the same project settings ? 回答1: This is the sort of question that gets people bent out of shape in a debate that never ends. You basically have two camps: Only put source code into the source control system. Each developer chooses their own IDE and manages their own project configuration.