如何使用命令从 p4v 撤消旧的变更列表

如何使用命令从 p4v 撤消旧的变更列表

我如何使用命令从 p4v 撤销旧的变更列表?

旧变更列表历史记录:

file delete #6
file edit #5
file edit #4
file add #3
file delete #2
file add #1

我想撤消文件添加 #3,如何使用命令?如果使用https://portal.perforce.com/s/article/3474,请使用以下步骤:

Change 1000 by trudi@spice on 1999/07/27 11:47:0
Affected files ...
... //depot/foo.txt#1 add
... //depot/bar.txt#3 delete
... //depot/ola.txt#4 edit

p4 sync @999
p4 edit //depot/ola.txt
p4 add //depot/bar.txt
p4 sync @1000
p4 resolve -ay
p4 sync
p4 resolve
p4 delete //depot/foo.txt
p4 submit

好像不对。

相关内容