zoukankan      html  css  js  c++  java
  • Why I got an empty folder after "git clone" android kernel source?

    Hi,
    Everything is out there in .git folder only.
    By default, these URLs for cloning will put the .git stuff in your local folder. As you have not mentioned any remote branch name while cloning , hence,
    it would not checkout the files in your local repository.
    All you need to do is to checkout correct remote branch to get all the files in the local repository.
    Do a  "git branch -r" to see what remote branches are available.
    If it shows a list of remote branches, create and checkout a local branch using:
                    git checkout -b <local_branch_name> <remote_branch_name>
    Let me know, if it works. :)
    -
    Dharam
  • 相关阅读:
    采样错误
    MathJax
    jupyter
    pip
    str操作
    Content-Type
    json转csv
    【tornado】静态文件
    dict 字典
    基于插件技术的GIS应用框架(C# + ArcEngine9.3)(一)
  • 原文地址:https://www.cnblogs.com/super119/p/2325416.html
Copyright © 2011-2022 走看看