Re: [git-users] how to get list of tags on commits merged to branch X between tags Y and Z

2022-12-18 Thread Graham Menhennitt
Thanks again Konstantin. In my original message, I said "I want a list of tags attached to commits that were merged to X between Y and Z". But in my second message I said it wrongly - "list of tags produced by your command includes ones that do not belong to branch X". Instead I should have

Re: [git-users] how to get list of tags on commits merged to branch X between tags Y and Z

2022-12-16 Thread Konstantin Khomoutov
On Thu, Dec 15, 2022 at 02:08:22PM -0800, Graham Menhennitt wrote: [...] >> Note that the branches are irrelevant for traversing. You can use branches >> to refer to commits, but any way to refer to them would do; the traversal >> process itself is only concerned with commits. [...] >

Re: [git-users] how to get list of tags on commits merged to branch X between tags Y and Z

2022-12-15 Thread Graham Menhennitt
Thanks very much for replying, Konstantin. Unfortunately, that doesn't quite match my requirements - as you say above, it doesn't filter by branches. So the list of tags produced by your command includes ones that do not belong to branch X. I'll try to filter it somehow. Thanks, Graham On

Re: [git-users] how to get list of tags on commits merged to branch X between tags Y and Z [solved]

2022-12-15 Thread Graham Menhennitt
Thank you, Konstantin. That appears to do exactly what I need. Thanks, Graham On Friday, December 16, 2022 at 5:40:51 AM UTC+11 Konstantin Khomoutov wrote: > On Tue, Dec 13, 2022 at 08:47:49PM -0800, Graham Menhennitt wrote: > > > Our development workflow consists of: > > > > Developer: > >

Re: [git-users] how to get list of tags on commits merged to branch X between tags Y and Z

2022-12-15 Thread Konstantin Khomoutov
On Tue, Dec 13, 2022 at 08:47:49PM -0800, Graham Menhennitt wrote: > Our development workflow consists of: > > Developer: > >- creates private branch off project’s ‘develop’ branch >- develops feature or fixes bug on private branch >- merges private branch to ‘develop’ branch >-

[git-users] how to get list of tags on commits merged to branch X between tags Y and Z

2022-12-13 Thread Graham Menhennitt
Hello gitters, Our development workflow consists of: Developer: - creates private branch off project’s ‘develop’ branch - develops feature or fixes bug on private branch - merges private branch to ‘develop’ branch - creates tag on merge commit identifying feature/bug Project