错误记录Git 使用报错 ( git branch -a 仍能查询到已经删除的远程分支 )
Posted 韩曙亮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误记录Git 使用报错 ( git branch -a 仍能查询到已经删除的远程分支 )相关的知识,希望对你有一定的参考价值。
一、报错信息
之前已经执行
git push origin --delete feature1
命令 , 删除了 feature1 远程分支 , 删除操作成功 , 远程仓库中 , 只剩下 master 主分支 ;
远程仓库分支如下图 :
执行
git branch
进行本地版本库分支查询 , 本地只有 master 分支 ;
然后再执行
gir branch -a
查询远程分支 , 发现仍然能查询到 remotes/origin/feature1
远程分支 ;
D:\\Git\\git-learning-course>git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/feature1
remotes/origin/master
注意 , 此时再执行 git push origin --delete feature1
命令 , 是无用的 , 只会提示错误信息 ;
二、解决方案
执行
git remote show origin
命令 , 可以列出在本地分支中对应的远程分支 , 也就是本地分支执行 git push
命令 , 代码会被推送到哪个远程分支 ;
D:\\Git\\git-learning-course>git remote show origin
warning: redirecting to https://codechina.csdn.net/han12020121/git-learning-course.git/
* remote origin
Fetch URL: https://codechina.csdn.net/han12020121/git-learning-course
Push URL: https://codechina.csdn.net/han12020121/git-learning-course
HEAD branch: master
Remote branches:
master tracked
refs/remotes/origin/feature1 stale (use 'git remote prune' to remove)
Local branch configured for 'git pull':
master merges with remote master
Local ref configured for 'git push':
master pushes to master (up to date)
然后 , 执行
git remote prune origin
命令 , 可以同步本地远程分支 , 也就是删除 feature1 分支 ;
D:\\Git\\git-learning-course>git remote prune origin
warning: redirecting to https://codechina.csdn.net/han12020121/git-learning-course.git/
Pruning origin
URL: https://codechina.csdn.net/han12020121/git-learning-course
* [pruned] origin/feature1
最后 , 再次执行
git branch -a
命令 , 查询远程分支 , 发现只剩下 master 主分支了 ;
D:\\Git\\git-learning-course>git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
以上是关于错误记录Git 使用报错 ( git branch -a 仍能查询到已经删除的远程分支 )的主要内容,如果未能解决你的问题,请参考以下文章
错误记录Git 使用报错 ( error: Cannot delete branch ‘dev‘ checked out at ‘D:/Git/git-learning-course‘)
错误记录Git 使用报错 ( error: Cannot delete branch ‘dev‘ checked out at ‘D:/Git/git-learning-course‘)
错误记录Git 使用报错 ( error: The branch ‘feature1‘ is not fully merged. )
错误记录Git 使用报错 ( error: The branch ‘feature1‘ is not fully merged. )
JAVAEclipse中使用git进行pull远程代码,报错The current branch is not configured for pull No value for key branc
JAVAEclipse中使用git进行pull远程代码,报错The current branch is not configured for pull No value for key branc