Git delete branch
2017-12-06 本文已影响23人
JaedenKil
- Git remove remote branch
# git push <remote_name> --delete <branch_name>
git push origin --delete issue_001
- Git remove local branch
git branch -d issue_01
or if error: The branch 'issue_fix_typo' is not fully merged
git branch -D issue_001