-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GitGraph: commit options for merge commits #3238
Comments
I was just writting a documentation with Git diagram and naturally added id option to a merge commit to be able to cherry-pick it and was disappointed when I realized it is not supported. Cherry-picking of merged requests is verry common in development so not being able to visualize it is a big gap. It would be really nice if this can be supported. |
I can confirm the lack of the Similarly, some merge commits are squash merges, and there's no easy way to show the difference. That's why I'm (for now) abusing the |
This is really a reopening of #2934 as the original request was for
merge
to support all fields thatcommit
does, but the change only added support for tags.Is your feature request related to a problem? Please describe.
Merge commits should be treated like ordinary commits, in that they should be customize-able with the same syntax. e.g.
Describe the solution you'd like
The syntax tree for merge should probably just be exactly the same as the commit tree after the branch name.
Additional context
Right now it is impossible to refer to a merge commit. The case I'm struggling with is cherry-picking a merge. Adding an extra commit afterwards isn't the same thing.
The text was updated successfully, but these errors were encountered: