8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Add support for force deletion of topic branches, which allows removing branches even if they haven't been fully merged.
-f
--force
--no-force
gitflow.<topic>.delete.force
gitflow.feature.delete.force
gitflow.release.delete.force
gitflow.hotfix.delete.force
git branch -d <branch>
git branch -D <branch>
git branch --delete --force <branch>
Test Cases:
Default Behavior (No Force Delete)
git branch
Force Delete with Command Line (Positive)
git flow feature delete myfeature --force
Force Delete with Command Line (Negative)
gitflow.feature.delete.force=true
git flow feature delete myfeature --no-force
Force Delete with Config
Cross-Branch Type Tests
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
force-delete
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Add support for force deletion of topic branches, which allows removing branches even if they haven't been fully merged.
-f
or--force
- Force delete the branch--no-force
- Explicitly disable force deletiongitflow.<topic>.delete.force
gitflow.feature.delete.force
,gitflow.release.delete.force
,gitflow.hotfix.delete.force
git branch -d <branch>
fails, butgit branch -D <branch>
orgit branch --delete --force <branch>
succeeds if branch isn't fully mergedTest Cases:
Default Behavior (No Force Delete)
git branch
Force Delete with Command Line (Positive)
git flow feature delete myfeature --force
git branch
Force Delete with Command Line (Negative)
gitflow.feature.delete.force=true
git flow feature delete myfeature --no-force
git branch
Force Delete with Config
gitflow.feature.delete.force=true
git branch
Cross-Branch Type Tests
The text was updated successfully, but these errors were encountered: