I have several feature branches that are being automatically merged into the integration branch. I’d like to know if and when this is happening.
I can type git log which will show me that a merge has happened but for some reason it does not show me from which feature branch it just says “merged integration_branch into integration_branch”
I can type git branch --merged
but that only lists the feature branches that are being merged into the integration branch. I’d like to know when and by whom, and be able to drill down into this merge information.
I would make use of
git logwith some colours to do this:This will colour each branch and the merges. It will also label the head of each branch.
You can add relative dates and committer names with this:
For more info see: http://git-scm.com/book/en/Git-Basics-Viewing-the-Commit-History