Clearcase“pname”对于 VOB
我正在尝试更改 VOB 的所有权,并且我看到 cleartool Protect
命令有一个 chown
选项。它要求提供一个 pname,但我似乎找不到有关 pname 是什么或如何指定 pname 的文档。我想我的问题可以归结为:
什么是 pname?它的格式是什么?
如何指定 VOB 的 pname?
某处有关于 pname 的文档吗?或者至少是更改 VOB 所有权的示例。
I'm trying to change the ownership on a VOB, and I see that the cleartool protect
command has a chown
option. It's asking for a pname, and I can't seem to find documentation on what a pname is or how to specify one. I guess my questions boil down to:
What's a pname? What's its format?
How do I specify the pname for a VOB?
Is there documentation on pnames somewhere? Or at least examples of changing ownership of VOBs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更改 Vob 的所有权是通过
cleartool Protectvob
。它将需要“
pname-in-vob
”:即:
/vobs/MyVob
(unix 风格)或\MyVob
(Vob 标签的常见 Windows 声明)它与
cleartool 保护
,它只会保护一个元素(文件或目录),对于 Vob,即 Vob 的根目录。该根目录的路径将是
pname
。但同样,这不会改变 Vob 的所有权。
Changing the ownership of a Vob is done through
cleartool protectvob
.It will require the "
pname-in-vob
":I.e:
/vobs/MyVob
(unix-style) or\MyVob
(usual Windows declaration for Vob tags)It is different from
cleartool protect
, which would only protect an element (file or directory), which is, in the case of a Vob, the root directory of the Vob.The path of that root directory would be the
pname
.But again, that wouldn't change the ownership of the Vob.
“pname”是VOB路径名。示例元素路径名称为
M:\view1\vob3\src\main.c
或/vob3/src/main.c
(取决于您的平台)。cleartool Protect
更改由路径名标识的 VOB 对象的权限或所有权"pname" is a VOB path name. An example element path name would be
M:\view1\vob3\src\main.c
or/vob3/src/main.c
(depending on your platform).cleartool protect
changes permissions or ownership of a VOB object identified by its pathname