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,
TomYou can specify a date range like this:
p4 interchanges -t branch1@2010/01/01,@2010/08/17 branch2 > temp.txt
精彩评论