我正在尝试使用不同的用户在p4api.net中编辑更改列表描述。有没有可能这样做,因为我试图用不同的用户编辑变更列表描述,但它不允许我这样做。让我知道是否有任何强有力的方式来编辑/更新变更列表描述与不同的用户使用p4api.net方法。
用户A创建的-Changelist。
-Now用户B要在更改列表描述中更新/附加。
发布于 2015-05-06 21:52:59
一般来说,这是一个特权操作。您没有提到用户B是否具有特权。如果用户B具有权限,则该用户可以通过指定'force‘(-f)标志来更新其他用户的更改列表。
来自'p4 help change':
The -f flag forces the update or deletion of other users' pending
changelists. -f can also force the deletion of submitted changelists
after they have been emptied of files using 'p4 obliterate'. By
default, submitted changelists cannot be changed. The -f flag can
also force display of the 'Description' field in a restricted
changelist. Finally the -f flag can force changing the 'User' of
an empty pending change via -U. The -f flag requires 'admin'
access granted by 'p4 protect'. The -f and -u flags are mutually
exclusive.https://stackoverflow.com/questions/30075638
复制相似问题