当我尝试在集成中解析大量文件时,P4V 一直让我很烦恼。 我希望能够在命令行中执行此操作。
以下是 P4V 中的步骤:
有人可以将其翻译成具有正确参数的 p4 命令行命令吗?
您可以使用
p4 resolve -am [file ...]
来跳过有冲突的文件。
如果指定文件,您将仅处理该文件。 如果指定
...
,您将处理工作目录下的文件。 如果您不指定文件,它将适用于您工作区中的所有文件。
使用 Perforce 2013.2,您确实可以提供一个变更列表编号来解析,以限制对该变更列表中的文件的操作。
p4 resolve -c changelist#
我按照以下步骤从命令行执行此操作。
p4解析-c 1234 -n
Automatic Mode. Automatically accept the recommended file revision: if theirs is identical to base, accept yours; if yours is identical to base, accept theirs; if yours and theirs are different from base, and there are no conflicts between yours and theirs; accept merge; otherwise, there are conflicts between yours and theirs, so skip this file.
p4 解析 -c 1234 -am
使用以下选项进行自动合并。
p4 resolve -am
用于接受合并。p4 resolve -at
接受他们的。p4 resolve -ay
接受你的。