使用 P4python 在 Perforce 中分支时添加描述

Adding description when branchen in Perforce using P4python

我已经想出了如何分支和提交我的更改,但是由于我使用像 Jira 这样的项目管理平台,我还需要在每次签到时写一个描述。 这是我的分支代码:

result = p4.run("populate", Path+"/...@"+ Changelist, destination)

我在哪里写描述?现在描述就是命令本身。

C:\Perforce\test\python>p4 help populate

    populate -- Branch a set of files as a one-step operation

    p4 populate [options] fromFile[rev] toFile
    p4 populate [options] -b branch [-r] [toFile[rev]]
    p4 populate [options] -b branch -s fromFile[rev] [toFile]
    p4 populate [options] -S stream [-P parent] [-r] [toFile[rev]]

        options: -d description -f -m max -n -o

所以:

   result = p4.run(
       "populate", 
       "-d",
       "My awesome description",
       f"{src_path}/...@{changelist}", 
       f"{dst_path}/..."
    )

您还可以使用 integratesubmit 命令(请注意,这需要 dst_path 是您的客户端视图的一部分,因为文件将在您的客户端之前打开提交):

p4.run("integrate", f"{src_path}/...@{changelist}", f"{dst_path}/...")
p4.run("submit", "-d", "My awesome description")