如何更新git dasho地图文件

时间:2017-07-04 08:44:50

标签: git

使用以下命令删除远程分支后

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 ,但它无法解决问题。

1 个答案:

答案 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
...