Reputation: 63
What is the best way to create a list of branches, that were merged into a release branch?
Is there any add-on or plugin for Stash, that a project manager could use to see which features/users stories/defects, that are part of branch names, are included into a release branch?
if there is no such plugin - which Git commands could be used to create such a report?
Upvotes: 1
Views: 71
Reputation: 395
Not sure about the plugin, but you can use the following command to get the list of branches:
git show-branch --list
This documentation was pretty useful: http://git-scm.com/docs/git-show-branch.html
Hope this helped!
Upvotes: 1