Reputation: 5318
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
Reputation: 71454
Run:
p4 reconcile
In P4V the equivalent is "Reconcile Offline Work..."
Upvotes: 3