Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of checked out files by others in Perforce

Tags:

perforce

How can I get a list of all checked out files by user abc in Perforce?

Also, how can I get a list of all checked out files by me?

like image 990
Mike Avatar asked Oct 19 '11 21:10

Mike


People also ask

What does check out mean Perforce?

Perforce allows you to check out the head revision or any previous revision of a file. To enforce the IDEs' check-in and check-out procedures, Perforce controls the read-write permissions of files. When files are checked out for edit, their permissions are set to read-write.

How do I search for a file in p4v?

Go to Search > Find File. The Find File tab opens in the right pane. On the Find File tab in the right pane, under Search in, enter the directory path you want to search. You can drag and drop the file path from the Depot or Workspace Tree in the Tree pane.

What does p4 Fstat do?

The p4 fstat command dumps information about each file, with information for each field on a separate line. The output is best used within a Helix C/C++ API application where the items can be accessed as variables, but is also suitable for parsing by scripts.

What does clean do in Perforce?

The p4 clean command takes the following actions when finding inconsistencies between files in a user's workspace and corresponding depot files: Files present in the workspace, but missing from the depot are deleted from the workspace.


1 Answers

Same answer for both:

p4 opened -u <username>
like image 182
gareth_bowles Avatar answered Jan 04 '23 04:01

gareth_bowles