I need to list all changelists of a steam between two revisions.
p4 changes command can list all changelists that we submitted into a branch in between two revisions.
p4 changes //depot/stream/...@from_revision,to_revision
While this command works great, it will only show changelist that were directly submitted into that branch. Changelists that were merged/integrated from other branches will be missing.
p4 changes command does offer a -i option to include integrated changelist.
p4 changes -i //depot/stream/...@from_revision,to_revision
However, it seems that -i option and revision specifier does not work well together, as I get revision outside of the range. To be more precise, revisions prior to from_revision are not correctly excluded while, strangely enough, revision after to_revision are as expected filtered out !
Any help appreciated on this issue ! Thanks !