How can i modify vob group in clearcase in windows?

左心房为你撑大大i 提交于 2019-12-07 15:34:29
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 "TheNewGroup" -chown yourID $*

And then change the view properties:

fp -rec -chmod 775 \\path\to\view\storage\yourID\yourView.vws
fp -root \\path\to\view\storage\yourID\yourView.vws

Or, without the doskey (Windows alias):

c:\Rational\ClearCase\etc\utils\fix_prot.exe -force -chgrp "TheNewGroup" -chown yourID $* -rec -chmod 775 \\path\to\view\storage\yourID\yourView.vws
c:\Rational\ClearCase\etc\utils\fix_prot.exe -force -chgrp "TheNewGroup" -chown yourID $* -root \\path\to\view\storage\yourID\yourView.vws
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!