[INDEX]

What is this "filelog" output telling me?

If you do a 'p4 filelog' on a file, you get the complete record of which deltas were merged into that file, and from which depot path & file they originated. Here's an example of what 'p4 filelog' reports for a file that has some renaming & branching history:
	% p4 filelog //depot/main/jam/filescan.c
	//depot/main/jam/filescan.c
	... #2 change 5052 integrate on 1998/04/13 by laura@testclient 
		'Merge r1->main. '
	... ... merge from //depot/r1/jam/scan.c#1,#3
	... #1 change 5049 branch on 1998/04/13 by laura@testclient 
		'Rename scan.c->filescan.c. '
	... ... branch from //depot/main/jam/scan.c#1,#19
	... ... merge into //depot/r1/jam/scan.c#3
	% 
In English, here's what this tells us about //depot/main/jam/filescan.c:

The history of //depot/r1/jam/scan.c is also relevant here. A filelog on it produces:

	% p4 filelog //depot/r1/jam/scan.c
	//depot/r1/jam/scan.c
	... #3 change 5051 integrate on 1998/04/13 by laura@testclient 
		'Merge main->r1. '
	... ... merge from //depot/main/jam/filescan.c#1
	... ... merge into //depot/main/jam/filescan.c#2
	... #2 change 5050 edit on 1998/04/13 by laura@testclient 
		'Fix dirname case change. '
	... #1 change 5047 branch on 1998/04/13 by laura@testclient 
		'Branch main into r1. '
	... ... branch from //depot/main/jam/scan.c#1,#18
	% 
So we see it was originally branched from //depot/main/jam/scan.c, but as of rev #3 it is now related to //depot/main/jam/filescan.c.

(April 1998)

[INDEX]
This is file $Id: //guest/universitytexas/faq/br08.html#1 $ in the Perforce Public Depot