git merge: is there a way to force --squash?

3.1k Views Asked by At

So, the dev workflow for our project is like this: we create a task/bug ticket, and we branch off master to work on the task/bug, and eventually merge it back to master. We would like the commits on master to have nice messages. People committing on the task branch may not have good commit messages, and that's ok, but if the branch is to be merged, these commits with unclean messages are going into master.

One way to solve this is to always merge to master with --squash. That way, you get a chance to supply good commit message and treat the whole range of commits as one. I'm wondering if there's a way to enforce that? meaning, if we can let git server reject merges that aren't squashed?

3

There are 3 best solutions below

1
On

You could use rebase -i on your branch, which would allow you to essentially squash all the commits on the branch into 1 commit, then merge that branch (1 commit) to master.

2
On

While it's not directly forcing, you could set --squash as default merge option for the master branch:

git config branch.master.mergeoptions  "--squash"

This will always squash the commits being merged into master without having to specify the --squash option.

0
On

You need is a server side hook to ensure that what is getting pushed is what you need. You would reject any reference change that would introduce more than one non-merge commit. You could do other checks there like seeing that the comment contains a ticket number, etc.