如何重命名perforce depot中的文件

时间:2012-11-08 22:21:42

标签: perforce

在没有任何冲突的情况下重命名库中文件的过程是什么?

在p4或命令行中是否有任何方法?

1 个答案:

答案 0 :(得分:6)

是的,但该方法取决于您正在运行的Perforce版本。以下是如何从命令行执行此操作(这是从“p4 help rename”的输出中复制的。)

In release 2009.1 and higher, you can use 'p4 move' to move or
rename files. Perforce clients prior to release 2009.1 do not
support 'p4 move'.  However, files in older clients can be
renamed by branching one file to another and deleting the
original file.  For example:

    p4 integrate fromFile toFile
    p4 delete fromFile
    p4 submit

For further information, see the help for the individual commands.

Note: Files renamed in this way are treated as branched files
rather than moved files in subsequent operations.