zoukankan      html  css  js  c++  java
  • git clone <url>--depth 、 git clone <url> --recursive

    The --depth parameter refers to how deep Git goes on a "walk" from each starting point. As the documentation you quoted mentions, it also implies --single-branch, which simplifies talking about this. The important point here is that the walk visits all parents of each commit, which—for each depth level—is more than one commit if the commit itself is a merge.

    Suppose we have a commit graph that looks like this:

    $ git log --graph --oneline master
    * cf68824 profile: fix PATH with GOPATH
    * 7c2376b profile: add Ruby gem support
    * 95c8270 profile: set GOPATH
    * 26a9cc3 vimrc: fiddle with netrw directory display
    * 80b88a5 add ruby gems directory to path
    [snip]
    

    Here, each commit has just one parent. If we use --depth 3 we'll pick up the tip commit cf68824, its parent 7c2376b at depth 2, and finally 95c8270 at depth 3—and then we stop, with three commits.

    With the Git repository for Git, however:

    $ git log --graph --oneline master
    *   965798d1f2 Merge branch 'es/format-patch-range-diff-fix-fix'
    |  
    | * ac0edf1f46 range-diff: always pass at least minimal diff options
    * |   5335669531 Merge branch 'en/rebase-consistency'
    |   
    | * | 6fcbad87d4 rebase docs: fix incorrect format of the section Behavioral Differences
    * | | 7e75a63d74 RelNotes 2.20: drop spurious double quote
    * | | 7a49e44465 RelNotes 2.20: clarify sentence
    [snip]
    

    With --depth 3, we start with 965798d1f2, then—for depth 2—pick up both parents, ac0edf1f46 and 5335669531. To add the depth-3 commits, we pick up all the parents of those two commits. The (lone) parent of ac0edf1f46 is not visible here, while the two parents of 5335669531 are (namely 6fcbad87d4 and 7e75a63d74). To get the hash IDs of the parents of ac0edf1f46 we can use:

    $ git rev-parse ac0edf1f46^@
    d8981c3f885ceaddfec0e545b0f995b96e5ec58f
    

    so that gives us our six commits: the tip of master (which is currently a merge commit), two parents of that commit, one parent of one of those parents, and two parents of the other of that parent.

    Depending on precisely when you ran the clone of Git, the tip-most master is often not a merge, but often has a merge as its immediate parent, so that --depth 2 will often get you 3 commits, and --depth 3 will therefore get at least 5, depending on whether the two parents of the tip of master are themselves merges.

    (Compare the above git rev-parse output with:

    $ git rev-parse 965798d1f2^@
    5335669531d83d7d6c905bcfca9b5f8e182dc4d4
    ac0edf1f46fcf9b9f6f1156e555bdf740cd56c5f
    

    for instance. The ^@ suffix means all parents of the commit, but not the commit itself.)

    https://stackoverflow.com/questions/53683896/what-does-depth-for-git-clone-mean

    递归clone
    With version 2.13 of Git and later, --recurse-submodules can be used instead of --recursive:

    git clone --recurse-submodules -j8 git://github.com/foo/bar.git
    cd bar
    

    Editor’s note: -j8 is an optional performance optimization that became available in version 2.8, and fetches up to 8 submodules at a time in parallel — see man git-clone.

    With version 1.9 of Git up until version 2.12 (-j flag only available in version 2.8+):

    git clone --recursive -j8 git://github.com/foo/bar.git
    cd bar
    

    With version 1.6.5 of Git and later, you can use:

    git clone --recursive git://github.com/foo/bar.git
    cd bar
    

    递归更新
    For already cloned repos, or older Git versions, use:

    git clone git://github.com/foo/bar.git
    cd bar
    git submodule update --init --recursive
    

    https://stackoverflow.com/questions/3796927/how-to-git-clone-including-submodules

  • 相关阅读:
    Class StatusesTableSeeder does not exist 如何解决
    Heroku 如何上重置 PostgreSQL 数据库
    git强制push
    Heroku登录失败
    将手机替换为*号
    使用TP自带缓存时。出现第一次拿不到数据。
    PHP实现查看邮件是否被阅读
    使用file_get_contents下载图片
    介绍几款开源好用的产品
    查看光纤卡wwn号【转载】
  • 原文地址:https://www.cnblogs.com/Searchor/p/13820920.html
Copyright © 2011-2022 走看看