the git clone is empty? why this happens

后端 未结 4 1559
自闭症患者
自闭症患者 2021-02-01 16:36

This always perplexes me. I was cloning this

git clone https://android.googlesource.com/kernel/msm.git

And It seemed to be cloning resolving

4条回答
  •  面向向阳花
    2021-02-01 17:42

    This particular git repository seems to not have any contents on its master branch, which is the branch git checks out by default. It does however have another branch:

    % git branch -a
    * master
      remotes/origin/HEAD -> origin/master
      remotes/origin/android-msm-2.6.35
      remotes/origin/master
    

    So if you check out this branch:

    % git checkout android-msm-2.6.35
    Checking out files: 100% (33866/33866), done.
    Branch android-msm-2.6.35 set up to track remote branch android-msm-2.6.35 from origin.
    Switched to a new branch 'android-msm-2.6.35'
    

    then there's also content in the working tree.

提交回复
热议问题