在没有任何冲突的情况下重命名仓库中的文件的过程是什么?
在p4或命令行中有什么方法吗?
发布于 2012-11-09 06:29:50
是的,但是方法取决于你运行的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.https://stackoverflow.com/questions/13298868
复制相似问题