美文网首页Git
Git delete branch

Git delete branch

作者: JaedenKil | 来源:发表于2017-12-06 10:38 被阅读23次
  • 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 delete branch

    本文链接:https://www.haomeiwen.com/subject/ledkixtx.html