sindresorhus/refined-github


The issue has been closed
Warn before merging a PR if it contains fixup or squash commits #2385
dorian-marchal posted onGitHub
Our team uses fixup!
and squash!
commits to add changes to pull requests that have already been reviewed.
This is helpful for the reviewers because they can quickly identify the changes since their last review.
The commit history can look like this:
Commit A
Commit B
Commit C
fixup! Commit B
squash! Commit A
Note: Fixup and squash commits can be created with git commit (--fixup|--squash) <ref>
, as shown in this crappy GIF.
When the pull request is ready to be merged, these commits are squashed/fixed up with git rebase -i --autosquash
.
These commits are temporary and shouldn't be merged. I think it would be helpful to show a warning next to (and maybe disable) the "Merge" button when the current pull request contains at least one fixup/squash commit.