You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Issue
Using `\n` did not generate the intended effect.
# Fix
Use the correct approach:
> -m <msg>, --message=<msg>
> Use the given <msg> as the commit message. If multiple -m options are given, their values are concatenated as separate paragraphs.
git commit --message="Bump app-autoscaler-cli-plugin to ${NEW_TAG}\n\nThis is an automated commit to bump app-autoscaler-cli-plugin to [${NEW_TAG}](https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/tag/${NEW_TAG})."
69
+
git commit --message="Bump app-autoscaler-cli-plugin to ${NEW_TAG}" --message="This is an automated commit to bump app-autoscaler-cli-plugin to [${NEW_TAG}](https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/tag/${NEW_TAG})."
70
70
git push origin "${branch_name}"
71
71
# gh pr create --fill --head "origin:${branch_name}" --base main # This currently not working due to https://github.com/cli/cli/issues/2691
0 commit comments