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\yourID\yourView.vws

On Unix:

alias fp=/path/to/ClearCase/etc/utils/fix_prot -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

Note that if the group of the PVob has changed, you might have to change the group of the project, stream and associated branch as well.

cleartool protect -chgrp "YourNewGroup" stream:yourStream@\aPVob


来源:https://stackoverflow.com/questions/25312030/how-to-change-the-group-name-in-view-dir-vws-since-primary-group-in-pvob-is

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!