Starting a release with a + character in the name works fine however the publish command does not. I'm not sure if finish fails as well.
Ex:
$git flow release start 0.1.0-alpha+1
Switched to a new branch 'release/0.1.0-alpha+1'
Summary of actions:
- A new branch 'release/0.1.0-alpha+1' was created, based on 'develop'
- You are now on branch 'release/0.1.0-alpha+1'
Follow-up actions:
- Bump the version number now!
- Start committing last-minute fixes in preparing your release
- When done, run:
git flow release finish '0.1.0-alpha+1'
$git flow release publish 0.1.0-alpha+1
Branch 'release/0.1.0-alpha+1' does not exist and is required.
Starting a release with a
+
character in the name works fine however the publish command does not. I'm not sure if finish fails as well.Ex: