当前位置: 代码迷 >> 综合 >> 2021-09-22 repo sync 下来的代码后git branch -a 有remotes/m/master->的理解
  详细解决方案

2021-09-22 repo sync 下来的代码后git branch -a 有remotes/m/master->的理解

热度:39   发布时间:2023-11-27 11:49:56.0

一、当我们repo sync 下来的代码后,到某个仓库下执行git branch -a 会看到所有的分支,remotes/aosp/开头的分支都很好理解,就是在真正的远程服务器aosp上的库里,存在着对应的分支。但是有这样一个分支remotes/m/master -> aosp/honghua_2_branch,更奇怪的是这个分支的名称后面还有一个箭头,指向另外一个名称。

        那么这个remotes/m/master -> aosp/honghua_2_branch到底是什么意思呢?首先看remotes/m/master,这个就是一个repo的清单库的分支,也就是当你在执行repo init -U [URL] -b [branch_name]的时候,-b参数后面的分支。如果你repo init的时候,没有指定过-b参数。那么这里就会显示remotes/m/master。

       箭头后面的aosp/honghua_2_branch是什么呢?它就是在清单库里的default.xml里面指定的单个git库的revision值,也就是对应的分支。

二、好,按照上面的理解,我们在 repo init后加一个jhs896的分支,从下图上看git branch -a后是会有remotes/m/jhs896 -> aosp/honghua_2_branch,这么看这样理解是没问题的。

三、参考文章

refs/remotes/m分支的含义_weixin_34289454的博客-CSDN博客

  相关解决方案