I had the same error and the reason was the resolution.
The problem was that one developer is trying to integrate changes from one branch to which he has read / write access to another, which he also has read / write access to, but the latter is a branch created from another branch, in which he simply has read access.
Here is the structure with permissions (r = read, w = write):
trunk (r) develop (r) QA (rw) branch featureBranch1 (rw)
In this case, development was created from the backbone, QA from development, and featureBranch1 from development. The fact that he is trying to reintegrate featureBranch1 into QA, which was a branch created from development, and he does not have write access to development, in our case is the problem why he gets this message when trying to reintegrate featureBranch1 into QA.
Immediately after giving him access to the development record, the message disappears.
Samuel May 17 '17 at 14:42 2017-05-17 14:42
source share