0

鉴于我已经提交了我现在想要撤消的更改列表,因此我在使用 p4python 撤消 Perforce 中的更改时遇到了问题。我的想法是首先创建一个更改列表,然后运行撤消。但是,我做错了,文件没有被撤消。

# new_cl is the created changelist
# cl_to_undo is the changelist to undo.
# description is string
P4.run("undo", '-c'+new_cl, filePath+"@" + cl_to_undo, description)

# Submit
P4.submit(new_cl)

会给予任何帮助。谢谢。

4

1 回答 1

0

undo命令不带description参数。

C:\Perforce\test>p4 help undo

    undo -- Undo a range of revisions

    p4 undo [-n] [-c changelist#] file[revRange]
于 2020-05-11T14:13:06.437 回答