Query for First Parent Ancestors of commit #1526
Unanswered
joshuabalentine-PCC
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My eventual goal is to get a query to show me commits that have been merged into branch A but not into branch B, preferably without the direct line of branch A.
The core of it
only(A, B)
but I'd like to exclude the merge commits directly on A which should be the line of the first parents of A. I can't just useonly(A, B) - merges()
because that would exclude any merge of upstream branches into branch B.Beta Was this translation helpful? Give feedback.
All reactions