Boris Lipschitz
Boris Lipschitz

Reputation: 9516

In Perforce how do you view history of all changelists in repository?

I am not after history of a specific file but of the whole revision tree.

Upvotes: 2

Views: 22782

Answers (4)

Ashwath a
Ashwath a

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

Dolph
Dolph

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:

P4V View Submitted Changelists

Upvotes: 3

Toby Allen
Toby Allen

Reputation: 11213

If you use P4V

View the Submitted Tab in P4V or select the root depot and view the history tab.

Upvotes: 2

tenpn
tenpn

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

Related Questions