Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我搜索了互联网和 perforce 帮助页面,但找不到解决问题的方法。
在脚本中,所以在命令行中,我想更改我的工作区视图地图。例如:
//depot/some/branch/myfolder/mysubfolder/... /home/myuser/perforce/branch/myfolder/myworkspace/... 到 //depot/some/branch/... /home/myuser/perforce/分支/...
我无法弄清楚要使用什么命令。你能帮我吗?
您需要使用该p4 client命令。您可以使用-iand-o选项编写脚本,让您通过 STDIN 和 STDOUT 与工作区表单进行交互。
p4 client
-i
-o
更简单的方法是使用像 P4Python 这样的脚本 API:
cspec = p4.fetch_client('my_ws_name') view = ["//depot/some/branch/... /home/myuser/perforce/branch/..."] cspec["View"] = view p4.save_client(cspec)