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

空扰寡人 提交于 2019-12-07 17:30:29

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