On Fri, May 22, 2020, 1:49 PM Brennan Ashton <bash...@brennanashton.com> wrote:
> You want to find the point at which it was branched, something like > > git log master..releasebranch --oneline | tail -1 > > Then you can use it for the base of log > > git log branched-commit..master > > Nevermind I see what you were asking for. There is no great way to do this with git directly, usually you track this by using labels (or similar) on issues or PRs to aggregate it. At least that is that is how I have always run releases for work. --Brennan >