- 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
# git push <remote_name> --delete <branch_name>
git push origin --delete issue_001
git branch -d issue_01
or if error: The branch 'issue_fix_typo' is not fully merged
git branch -D issue_001
本文标题:Git delete branch
本文链接:https://www.haomeiwen.com/subject/ledkixtx.html
网友评论