-
Notifications
You must be signed in to change notification settings - Fork 111
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
Keep only Squash and merge button #363
Conversation
In #362 we found intermediate merge commit can cause the commit history hard to read. Thus, I propose to leave only the "Squash and merge" button to make it clear that we always squash the whole PR into one commit on merging.
@sebbASF here is the patch.
Yes. I mean:
This is not always applied but depends on the committers' actions. They can choose any of these three and the default is on personal bias (namely, merge commit the preset, and then default to your last action on a specific repo). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No objection
Since @bproffitt actively maintains this repo, I'll wait a bit for his opinion on this. |
I think that "rebase and merge" should be used to avoid the merge commits |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"squash and merge" will impact the git statistics since more commits may be squashed in 1 commit
Literal "Rebase and merge" can still bring the author's merge commit into the main branch, while it does not create a new merge commit on merge. But I agree that sometimes one PR contains multiple portions of changes and is suitable for rebase and commit, while it can be theoretically separated into multiple PRs. |
Exactly. However, we don't chase for statistics here, do we? :D |
I don't think so. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, this seems fine to me.
In #362 we found intermediate merge commit can cause the commit history hard to read. Thus, I propose to leave only the "Squash and merge" button to make it clear that we always squash the whole PR into one commit on merging.