So the problem I need to solve is this:
- I have CL 100 submitted on //branch1
- This CL was later integrated from //branch1 to //branch2 in CL123.
- From //branch2 integration CL123 was later integrated to //branch3 and //task/branch4.
- Than later it was integrated from //task/branch4 to about 35 other branches using other branches on the way.
Let's say I have about 100 branches where CL can be integrated, but my task is to find all branches where initial CL100 was integrated.
How to do it? My team mates have been doing this manually (it takes hours, sometimes days to find all branches).
I just wonder if there some tool to list all branches where initial CL was integrated? If there's none what would be initial starting point of writing script to do this?
I tried using
p4 -ztag changes -i //depot/...@123,@123
but it only shows CL integration history not exactly what I'm looking for.

