nvie / gitflow

Git extensions to provide high-level repository operations for Vincent Driessen's branching model.
http://nvie.com/posts/a-successful-git-branching-model/
Other
26.6k stars 2.66k forks source link

Add -m parameter to `git flow feature finish` for custom commit messages #6491

Open DyByronWu opened 2 months ago

DyByronWu commented 2 months ago

Summary

The git flow feature finish command currently does not support a -m parameter for specifying a custom commit message when merging a feature branch. Introducing this parameter would enable users to provide a specific message for the merge commit, enhancing the clarity and usefulness of the commit history.

Expected Behavior

A new -m or --message parameter should be available for the git flow feature finish command, allowing users to specify a custom commit message. For example: git flow feature finish -m "Custom commit message"

Proposal

Add a -m or --message parameter to the git flow feature finish command. This parameter should accept a string input that will be used as the commit message for the merge commit when finishing the feature branch.

Benefits