We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was unable to use gitflow to include release notes/a change log. This is what I tried:
git flow release finish 1.0.0 --pushdevelop --pushtag --pushproduction -m "Tagging 1.0.0 >> >> # [CHANGED] >> - Something has changed >> >> # [FIXED] >> - Something has been fixed"
Multiple -m don't work either:
-m
git flow release finish 1.0.0 --pushdevelop --pushtag --pushproduction -m "Tagging 1.0.0" -m "# [CHANGED] >> - Something has changed >> >> # [FIXED] >> - Something has been fixed"
add -subject and -body to your command: https://github.com/nvie/gitflow/blob/develop/git-flow-release#L251:
-subject
-body
[ "$FLAGS_message" != "" ] && opts="$opts -m '$FLAGS_message'" [ "$FLAGS_subject" != "" && "$FLAGS_body" ] && opts="$opts -m '$FLAGS_subject' -m '$FLAGS_body'"
Another solution would be to fix whatever causes strange results with multiline tag messages
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was unable to use gitflow to include release notes/a change log. This is what I tried:
Multiple
-m
don't work either:Solution
add
-subject
and-body
to your command:https://github.com/nvie/gitflow/blob/develop/git-flow-release#L251:
Another solution would be to fix whatever causes strange results with multiline tag messages
The text was updated successfully, but these errors were encountered: