标签: perforce p4python
我正在尝试使用Python脚本在Perforce提供的Python API的帮助下将代码同步到库中的特定标签。 任何帮助将不胜感激。
答案 0 :(得分:1)
试试这个:
p4.run("sync", "...@[labelname]")
或更惯用的
p4.run_sync("...@[labelname]")