开发者

Non integrated change lists between two branches

开发者 https://www.devze.com 2023-01-12 10:04 出处:网络
I wanted to find the non-integrated开发者_运维问答 changelists from branch1 to branch2. When I do the following command :

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


You can specify a date range like this:

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

0

精彩评论

暂无评论...
验证码 换一张
取 消