tom
tom

Reputation: 21

Non integrated change lists between two branches

I wanted to find the non-integrated changelists from branch1 to branch2. When I do the following command :

p4 interchanges -t branch1 branch2 > temp.txt

I am getting the error:

"Too many rows scanned (over 500000); see 'p4 help maxscanrows'."

How I can use more restrictive wild cards in this case to get the results? I want to see non-integrated change lists between two branches for specific date ranges.

Thanks,
Tom

Upvotes: 5

Views: 1205

Answers (1)

raven
raven

Reputation: 18145

You can specify a date range like this:

p4 interchanges -t branch1@2010/01/01,@2010/08/17 branch2 > temp.txt

Upvotes: 4

Related Questions