I want to find out what the ID was of the latest transaction that changed a stream.
I figured I could use accurev hist -s NameOfStream -t now -fx
, but I am not sure if this would also show changes that I get from upstream.
Let's assume I have the following tree in AccuRev:
- MyDepot
- StreamA
- StreamA1
- StreamA2
- StreamB
- StreamA
In case I promote a change from StreamB to MyDepot, that also affects StreamA and its children, I want to see the transaction when calling accurev hist -s StreamA1 -t now -fx
. Does this happen or do I need a different command?
Update: I checked and the hist
command only shows transactions that occured in the specific stream I mentioned and not any upstream changes.
How can I detect a change in a stream with a single command, without having a local workspace?