Reputation: 9516
I am not after history of a specific file but of the whole revision tree.
Upvotes: 2
Views: 22782
Reputation: 11
if you want to see the history log in p4v just follow the below step. select the file to which you want to see the history log . right click on it and select file history. note :if you want entire history of a file starting from version1.0 to version x.0 just right click on the file and select revision graph as shown in picture.file history in p4v
Upvotes: 0
Reputation: 50650
In P4V 2009.2 (at minimum) View -> Submitted Changelists
allows you to filter the list of all changelists by folder/file, user, or workspace, as shown in the screenshot below:
Upvotes: 3
Reputation: 11213
If you use P4V
View the Submitted Tab in P4V or select the root depot and view the history tab.
Upvotes: 2
Reputation: 4706
You want just a big list of all changelists?
At the command line:
> p4 changelists
For more detailed output:
> p4 changelists -l
To see more information on a specific changelist:
> p4 changelist [changelistnumber]
Upvotes: 9