Replies: 2 comments 8 replies
-
Maybe we could have a single on/off configuration flag that means "do we automatically generate a message when we create commits with multiple parents." Note that for the immediate moment, you should be able to do something like |
Beta Was this translation helpful? Give feedback.
-
This article on LWN.net is a good read on the subject of merge commit messages. Select quotes:
Whenever my teammates merge the trunk into their topic branch, I keep asking them why and quoting that last bit from the article. So, going back on topic here, my point is that JJ has a better default than Git, since the automatic message in Git means more people neglect to think about the message and replace it with a better one, thus making it almost pure noise. If the default is empty, then every non-empty message must signal something. |
Beta Was this translation helpful? Give feedback.
-
By default, when creating a merge commit, no description is created. This is somewhat unhelpful when that commit needs to be pushed to an upstream
git
repo, since commits without descriptions can't be pushed. Is there a way to configure a default message, preferably imitating Git's "merged branch [foo] into [bar]"?Beta Was this translation helpful? Give feedback.
All reactions