I have several branches of functions that are automatically merged into an integration branch. I would like to know if and when this happens.
I can print git log which will show me that the merge has occurred, but for some reason it does not show me which function branch it just says "merged integration_branch into integration_branch"
I can print git branch --merged
but only lists of feature branches that merge into an integration branch. I would like to know when and by whom, and be able to deploy this merger information.
source share