search

Home  >  Q&A  >  body text

github - git删除分支的问题

我的git管理中有两个分支,一个master一个fix分支。
我fix分支的bug解决完毕了之后我决定合并到master并且删除掉它,最后提交到github上去。

好的,上面这段描述发生在自己家里。等到了公司的时候,奇怪的事情发生了,我在fix分支上(公司这边还保留着删除之前的样子)特意试了试pull,这会儿居然很神奇的提示我如下信息:

$ git pull origin fix
Password for 'https://abc@abc.com':
From https://abc.org/abc/abc
* branch fix -> FETCH_HEAD
Already up-to-date.

请问这个啥意思?

EDIT #1:
刚才又去线上看了下,是自己没有删除这个分支才会导致这个现象的,看来是误会了。需要知道如何删除分支的同学请查看被采纳回答。 :)

阿神阿神2799 days ago662

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师2017-04-24 09:14:10

    You need to delete the remote branch

    git push origin :yourbrand
    

    To automatically clear references to deleted remote branches, use

    git fetch -p
    

    In fact, it is recommended that you use github's pull-request to merge branches.

    reply
    0
  • Cancelreply