vote up 1 vote down star

I am creating some build scripts that interact with Perforce and I would like to mark for delete a few files. What exactly is the P4 syntax using the command line?

flag

66% accept rate
Surely an RTFM moment? See Mike B's answer. – Greg Whitfield Oct 3 '08 at 23:02
Actually, SO is also for folks that don't RFTM. :-) Jeff/Joel has said repeatedly that no question is trivial as long as its programming related. IMHO this question is what you would want in SO rather than the more popular, subjective questions that are asked (favorite cartoon?, etc.) – Ray Vega Oct 6 '08 at 6:35

3 Answers

vote up 5 vote down check
p4 delete filename

(output of p4 help delete)

delete -- Open an existing file to delete it from the depot

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.
link|flag
vote up 5 vote down

Teach a man to fish:

  • p4 help - gets you general command syntax
  • p4 help commands - lists the commands
  • p4 help <command name> - provides detailed help for a specific command
link|flag
It does make you wonder how someone could think it is easier to ask here at SO than to look in the docs or Perforce website.... – Greg Whitfield Oct 3 '08 at 23:01
I don't program in P4 all day & go months between modifying build files so sometimes can't recall what the "trivial" p4 command is for deleting files. Next time I need to know (which I will) it will be easier and faster because it is under my SO favorites instead of digging in p4 documentation. – Ray Vega Oct 6 '08 at 6:41
vote up 2 vote down

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

Deleting files

To delete files from both the Perforce server and your workspace, issue the p4 delete command. For example:

p4 delete demo.txt readme.txt

The specified files are removed from your workspace and marked for deletion from the server. If you decide you don't want to delete the files after all, issue the p4 revert command. When you revert files opened for delete, Perforce restores them to your workspace.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.