bonafiden
bonafiden

Reputation: 63

Report from Git regarding branches in a release

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

Answers (1)

Anth Bieb
Anth Bieb

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

Related Questions