使用以下命令删除远程分支后
git push origin --delete <remote_branch_name>
我使用 git branch -vv
...
local_branch_name SHA-1 [origin/remote_branch_name: gone] Update the dasho map files
...
这意味着什么&#34;更新仪表地图文件&#34;?怎么做?
我尝试使用 git fetch origin
,但它无法解决问题。
答案 0 :(得分:0)
这只是您的分支local_branch_name
指向的提交消息。
您无需做任何事情:没有问题。
您可以更改分支,以便停止跟踪“已消失”的远程分支origin/remote_branch_name
:
git branch --unset-upstream local_branch_name
然后,git branch -vv
的输出将是:
...
local_branch_name SHA-1 Update the dasho map files
...