如何在本地和远程删除 Git 分支?
欢迎来到英杰社区https://bbs.csdn.net/topics/617804998
欢迎来到我的主页,我是博主英杰,211科班出身,就职于医疗科技公司,热衷分享知识,武汉城市开发者社区主理人
擅长.net、C++、python开发, 如果遇到技术问题,即可私聊博主,博主一对一为您解答
修改代码、商务合作:
Yan--yingjie
Yan--yingjie
Yan--yingjie
【报错】
尝试删除远程分支失败
【解决办法】
删除远程分支
`git push -d origin <branch-name>
`
或
`git push origin :<branch-name>
`
-- 您也可以使用此语法删除标签
强制删除本地分支
`git branch -D <branch-name>
`
注意: 在其他机器上删除远程分支后,要删除过时的跟踪分支。git fetch --all --prune
删除本地分支
`git branch -D my-local-branch
`
删除远程分支
`git push origin :my-remote-branch
`
使用新版本的 git,还可以使用以下命令删除分支
`git push origin --delete <branch_name>
`
【常见模块错误】
如果出现模块错误
python
进入控制台输入:建议使用国内镜像源
pip install 模块名称 -i https://mirrors.aliyun.com/pypi/simple
我大致罗列了以下几种国内镜像源:
清华大学
https://pypi.tuna.tsinghua.edu.cn/simple
阿里云
https://mirrors.aliyun.com/pypi/simple/
豆瓣
https://pypi.douban.com/simple/
百度云
https://mirror.baidu.com/pypi/simple/
中科大
https://pypi.mirrors.ustc.edu.cn/simple/
华为云
https://mirrors.huaweicloud.com/repository/pypi/simple/
腾讯云
https://mirrors.cloud.tencent.com/pypi/simple/