使用 P4Python 将代码同步到标签

Syncing code to a label using P4Python

我正在尝试在 Perforce 提供的 Python API 的帮助下使用 Python 脚本将代码同步到软件仓库中的特定标签。 任何帮助将不胜感激。

试试这个:

p4.run("sync", "...@[labelname]")

或更惯用的

p4.run_sync("...@[labelname]")