Compare a file with a different stream and obtain CS
![]()
I have this use case :
I am going to start development on a file in a development stream. I have my repository workspace in synch with the dev stream. Before I start my development, I want to make sure there has not been any change in the maintenance stream on that file. If there's a change, I want to try an accept & merge, so that I start with the latest fixes. My plan was to perform a compare... remote on the file and target the maintenance stream. That tells me if there's a change or not and the nature of the differences. But I have not found an easy way to get to the change set(s) and accept it/them. I don't want to compare at component level because there are many changes on other files that I don't care about. I could go and look at all CS for the file in the repository but it does not tell me the ones in the maintenance stream vs the ones elsewhere. I'd have to do locate on them to be sure. I was hoping to obtain the change sets from the compare/remote operations directly. Is that possible ? Is there a better workflow ? Thanks Nicolas |