我正在创建一些与Perforce交互的构建脚本,我想标记删除一些文件。使用命令行的P4语法究竟是什么?
答案 0 :(得分:7)
p4 delete filename
(p4帮助删除的输出)
删除 - 打开现有文件以从库中删除
p4删除[-c changelist#] [-n] file ...
Opens a file that currently exists in the depot for deletion.
If the file is present on the client it is removed. If a pending
changelist number is given with the -c flag the opened file is
associated with that changelist, otherwise it is associated with
the 'default' pending changelist.
Files that are deleted generally do not appear on the have list.
The -n flag displays what would be opened for delete without actually
changing any files or metadata.
答案 1 :(得分:7)
教导男人钓鱼:
p4 help
- 获得一般命令
语法p4 help commands
- 列出
命令p4 help <command name>
-
提供具体的详细帮助
命令答案 2 :(得分:2)
http://www.perforce.com/perforce/doc.062/manuals/boilerplates/quickstart.html
删除文件
要从Perforce服务器和工作区中删除文件,请发出p4 delete命令。例如:
p4 delete demo.txt readme.txt
指定的文件将从您的工作区中删除,并标记为从服务器中删除。如果您决定不想删除文件,请发出p4 revert命令。当您还原为删除而打开的文件时,Perforce会将它们还原到您的工作区。
答案 3 :(得分:0)
承认 - 在与您的安装相匹配的版本中,需要(少量)步骤才能在线查找(优秀!)Perforce用户指南,并获取所需信息的章节。
每当我发现自己需要关于p4命令行客户端的任何内容时,我依赖于Perforce内置的帮助。访问它并非易事:
p4
这可以让您了解Michael Burr在其答案中所展示的信息(以及更多信息)。 如果您没有立即获得帮助屏幕,我们的客户端配置出现问题,例如: P4PORT设置不正确。你显然需要先修复它。