Skip to content

Allowed a release branch to be renamed #23

New issue

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

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions git-flow-release
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,7 @@ git flow release finish
git flow release publish
git flow release track
git flow release delete
git flow release rename

Manage your release branches.

Expand Down Expand Up @@ -1095,3 +1096,15 @@ r,[no]remote Delete remote branch
echo "- You are now on branch '$(git_current_branch)'"
echo
}

cmd_rename() {
OPTIONS_SPEC="\
git flow release rename <new_name> [<new_name>]

Rename a given release branch
--
h,help! Show this help
showcommands! Show git commands while executing them
"
gitflow_rename_branch "$@"
}