Any way to get all PRs that go into specific release #17822
Answered
by
brugger1
markcmiller86
asked this question in
Help developing VisIt
-
Might anyone know the git magic to tease out information about all the PRs merged for a given release. |
Beta Was this translation helpful? Give feedback.
Answered by
brugger1
Jun 27, 2022
Replies: 1 comment
-
You can probably do a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
brugger1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can probably do a
git log
to get the history for a specific branch. You could also look at the output fortag
keywords if you happen to tag things. If you create RC branches, you may need to look at the history of the RC and develop branch.