1

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?

SQB
  • 3,926
  • 2
  • 28
  • 49
bonafiden
  • 63
  • 6

1 Answers1

1

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!

Anth Bieb
  • 395
  • 1
  • 4
  • 11
  • Thank you, this was helpful. Still hope that mAy be, someone will know something that will not require Bash commands, so that non-technical people could just press button and get nicely formatted list of branches. – bonafiden Aug 22 '14 at 12:14
  • I found a project that parses the output of git show-branch into objects so you can output the contents in any way you want to display to a user, check it out: https://www.npmjs.org/package/git-show-branch-parser – Anth Bieb Aug 24 '14 at 16:39