如何在本地和远程删除Git分支?
我想在本地和远程删除分支。
$ git branch -d remotes/origin/bugfix error: branch 'remotes/origin/bugfix' not found.$ git branch -d origin/bugfix error: branch 'origin/bugfix' not found.$ git branch -rd origin/bugfixDeleted remote branch origin/bugfix (was 2a14ef7). $ git pushEverything up-to-date $ git pullFrom github.com:gituser/gitproject* [new branch] bugfix -> origin/bugfixAlready up-to-date.
我应该做些什么来成功地remotes/origin/bugfix
在本地和远程删除 分支?
慕工程0101907