Reputation: 165
Is there a way to check all the files which are opened in the p4 client and can be reverted if we know that they are not edited.
Upvotes: 1
Views: 3695
Reputation: 3249
In P4V, on the pending changelist in question, right-click and choose Revert Unchanged Files.
On the command-line, you can achieve the same with p4 revert -c CHANGELIST -a
(you can even add -n
to preview the operation). See p4 help revert
for more information.
Upvotes: 7