了解git的所有分支(Understanding git branch all)

2019-10-19 13:33发布

什么是箭头 - 在这里(>)是指:

* development
  master
  production
  remotes/origin/HEAD -> origin/production
  remotes/origin/development
  remotes/origin/master
  remotes/origin/production

我只是试图让git的真正的手柄,所以我陷深,找出了进一步的我走了,少我知道混帐,哈哈。

Answer 1:

remotes/origin/HEAD -> origin/production

手段

remotes/origin/HEAD指向origin/production


origin/HEAD是不是一个独立的分支。 这仅仅是一个指针“主要”分支,在克隆后得到一个。

尝试git symbolic-ref refs/heads/foo refs/heads/master 。 此后git branch将显示:

foo -> master

然后foo是另一个名称而已master



文章来源: Understanding git branch all