S. Pauk
S. Pauk

Reputation: 5318

How can I automatically mark all opened files for delete when they are manually deleted from workspace

Following scenario:

first I open all project files for edit with

p4 edit ...

then several files are manually deleted from a Perforce workspace directory (not with p4 delete command).

How do I mark all the deleted files as deleted in a changelist?

If to compare with Git I'm looking for a command like:

git add --all *

Question concerns p4 or/and p4v, I know that p4eclipse has this feature.

Upvotes: 1

Views: 298

Answers (1)

Samwise
Samwise

Reputation: 71454

Run:

p4 reconcile

In P4V the equivalent is "Reconcile Offline Work..."

Upvotes: 3

Related Questions