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
{{ message }}
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
git hf release cancel -f ... does not delete the local release branch. Presumably that's because the local branch is unmerged, and the command to delete it uses the lowercase -d as opposed to the uppercase -D on the following two lines:
git hf release cancel -f ...
does not delete the local release branch. Presumably that's because the local branch is unmerged, and the command to delete it uses the lowercase-d
as opposed to the uppercase-D
on the following two lines:https://github.com/datasift/gitflow/blob/master/git-hf-release#L311
https://github.com/datasift/gitflow/blob/master/git-hf-release#L420
If my hunch is correct, I'll be happy to submit a PR that fixes this issue.
Steps to reproduce:
git hf release start 1.2.3
)release/1.2.3
branch has been created (git branch
)CHANGELOG.md
,package.json
, etc.) and commit itgit hf release cancel -f 1.2.3
)Release branch 'release/1.2.3' has been deleted
git branch
)The text was updated successfully, but these errors were encountered: