clearcase

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

本秂侑毒 提交于 2019-12-08 03:15:20
问题 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 回答1: 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

ClearCase can I use clearexport_ccase/clearimport to copy VOB data to a VOB on a different machine

早过忘川 提交于 2019-12-08 03:09:43
问题 ClearCase can I use clearexport_ccase/clearimport to copy VOB data to a VOB on a different machine at a different location? 回答1: copy VOB data to a VOB on a different machine at a different location? That kind of process means a reformatvob -dump / reformatvob -load : cleartool reformatvob -dump /vobstore/avob.vbs The process is described in "Moving VOBs and relocating VOB data". It uses the command refomatvob. clearfsimport wouldn't import all the metadata (stream, labels, projects, ...):

Can we create Labels in perforce

余生长醉 提交于 2019-12-08 03:07:56
问题 I am working in a project. We use both clearcase and perforce. As we are working on differnet builds, In clearcase we create a label for each release. Say for release "X", we create a clearcase case "Label X". Label X is having all the latest files with respect to release "X". When we finish another release say "Y", we create another label say "Label Y". Label "Y" is again having all the files for release "Y". But at any point of time we can go back to "Label X" .It means all the files will

How can I branch “main” node of a UCM project?

浪尽此生 提交于 2019-12-08 02:09:43
问题 We're using RAD with ClearCase plugin as "ClearCase Explorer Perspective". I need to make a new main version of a java project. For that reason, I want to change main/0 version to ie. main/1. How can I forward version from top-level? I tried to make new project by using "Project Explorer" creating new stream. It required previous baselines. However, when I checkin from this new project stream, it branches from the given baseline version(say 1) like below. main | 0 | MyProj1_Integration | 0 |

How to find the view location in my linux home dir

梦想与她 提交于 2019-12-08 01:26:30
问题 I have many views in my Linux home dir under different folders mentioned below. Home CCVIEWS views Development testproject : : etc. Now i want to list all the clearcase views in my linux dir in below format to work on other script. user_test_Work1.vws user_test_Work2.vws user_dev_Work1.vws user_newproject_Work.vws user_cqfix.vws How to search all the views in my home directory created by me and display the list of the views in shell script? Current at a time I can display one folder views but

MVFS error in a snapshot view

家住魔仙堡 提交于 2019-12-08 00:58:37
问题 I created a snapshot view using Rational ClearCase explorer. After creating it, I tried compiling my code and got an MVFS error: Unable to determine if the current working directory is in MVFS - no such device or address When I searched the IBM website for the sake of eliminating this error, I found out that a snapshot view does not use the MVFS. Why am I getting this error when Snapshot view does not use MVFS? 回答1: The path is xmalviv_view/NBA_axess_aup2/refsys/aup/aup61 A snapshot view is

Clearcase : Migrate from Git to ClearCase

浪尽此生 提交于 2019-12-08 00:31:29
问题 Could you please share your experience with Git to Clearcase migration ? As we need to convert our repo to CC and keep history. 回答1: There is no real "experience" of such a migration, but if you need to keep the history, you can do so easily for one branch (like master), it is more difficult for multiple branches: git filter-branch --tree-filter 'clearfsimport -preview -rec -nset . m:\MyView\MyVob\ParentDirectory' HEAD For each commit of the git repo, you do a clearfsimport, in order to add

ClearCase: Are views created in Unix not visible from Windows and vice versa?

末鹿安然 提交于 2019-12-07 23:56:34
问题 We have a ClearCase UCM project implementation that we access from Windows and Solaris stations. I have created several views on the same stream of the project from the CC project explorer in both Windows and Solaris. But when I go into the properties of the stream and look for views from CC project explorer in Windows, I don't see the views I created from Solaris and vice versa. But from CC project explorer in Windows, I can see views created from other Windows stations. Whats happening here

Cleartool - find unloaded/removed files

痴心易碎 提交于 2019-12-07 23:53:02
问题 Is there a command in Cleartool which i can use to list all files which have been removed from a branch? Thanks 回答1: The basic command to find anything in ClearCase is... cleartool find, also illustrated in "ClearCase UCM: Need to See Content of Deleted File". In your case, you would search for versions of files which aren't at the LATEST of a branch: cleartool find . -type f -version "! version(.../BRANCH/LATEST)" -print (see version selector for more on this ' .../ ' notation) To display

How to find the username who created latest version of element in clearcase?

依然范特西╮ 提交于 2019-12-07 23:46:10
问题 I am often getting a request like this. " Find the list of files changed from particular day". I got answer to this as example given below "cleartool find <Vobtag> -version "{brtype(IntegrationStream) && created_since(13-Jan.8:30)}" -print" But few people are asking "Find the list of files changed and by whom". So that they can pin down the developer name and assign him the task to resolve issues. Is it possible to pipeline the above command and find the user who made that version also? 回答1: