鉴于我已经提交了我现在想要撤消的更改列表,因此我在使用 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)
会给予任何帮助。谢谢。