3

Perforce と対話するビルド スクリプトをいくつか作成しており、いくつかのファイルを削除するようにマークしたいと考えています。コマンドラインを使用した P4 構文とは正確には何ですか?

4

4 に答える 4

9
p4 delete filename

(p4 help delete の出力)

delete -- 既存のファイルを開いてデポから削除します

p4 delete [ -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.
于 2008-10-03T19:53:52.100 に答える
7

男に釣りを教える:

  • p4 help - 一般的なコマンド構文を取得します
  • p4 help commands - コマンドのリスト
  • p4 help <command name>- 特定のコマンドの詳細なヘルプを提供します
于 2008-10-03T19:57:20.580 に答える
2

http://www.perforce.com/perforce/doc.062/manuals/boilerplates/quickstart.html

ファイルの削除

Perforce サーバーとワークスペースの両方からファイルを削除するには、p4 delete コマンドを発行します。例えば:

p4 delete demo.txt readme.txt

指定したファイルがワークスペースから削除され、サーバーから削除するようにマークされます。最終的にファイルを削除したくない場合は、p4 revert コマンドを発行します。削除のために開いたファイルを元に戻すと、Perforce はそれらをワークスペースに復元します。

于 2008-10-03T19:54:15.920 に答える
0

認めます-インストールに一致するバージョンの(素晴らしい!)Perforceユーザーガイドをオンラインで見つけて、必要な情報の章にたどり着くには、(わずかな)手順が必要です。

p4 コマンド ライン クライアントについて必要なことがあれば、Perforce に組み込まれているヘルプに頼っています。アクセスは非常に簡単です。

  1. コマンド ラインで次のように入力します。p4

これにより、Michael Burr が回答 (およびその他) で示した情報が得られます。ヘルプ画面がすぐに表示されない場合は、P4PORT が正しく設定されていないなど、クライアントの構成に問題があります。明らかに最初にそれを修正する必要があります。

于 2010-02-22T22:16:13.110 に答える