Rumah > Soal Jawab > teks badan
只拿到了一个分支一个 commit, 再运行 fetch 也拿不到其他的分支和 commits 了.
尝试了 git fetch --all
git fetch origin
无效.
用什么命令来获取完整的仓库呢?
更新:
搜到一段文章说不能继续... 不知道是不是真的:
http://strk.keybit.net/blog/2011/06/07/getting-just-the-tip-of-a-remote-git-branch/
A shallow repository (one with short history) cannot be further cloned,
ringa_lee2017-04-24 09:15:04
Rujuk kepada jawapan @Leedy dan @Evian dan dapatkan bahawa terdapat parameter unshallow
:
git fetch --help
--unshallow
Convert a shallow repository to a complete one, removing all the limitations imposed by shallow repositories.
PHP中文网2017-04-24 09:15:04
(Adakah anda menyelesaikan masalah dalam komen?)
$ git version
git version 1.8.5.3
$ git help clone
...
--depth <depth>
Create a shallow clone with a history truncated to the specified
number of revisions. A shallow repository has a number of
limitations (you cannot clone or fetch from it, nor push from nor
into it), but is adequate if you are only interested in the recent
history of a large project with a long history, and would want to
send in fixes as patches.
...
Ia boleh dilihat bahawa klon cetek git hanya boleh mengklon struktur direktori alat kawalan jauh/HEAD semasa, tidak termasuk sejarah, jadi ia bukan repo yang lengkap.
Walau bagaimanapun, Git 1.9/2.0 telah mengalih keluar had ini, lihat https://github.com/git/git/commit/82fba2b9d39163a0c9b7a3a2f35964cbc039e1a.
Rujukan: http://stackoverflow.com/questions/6941889/is-git-clone-depth-1-shallow-clone-more-useful-than-it-makes-out
PHPz2017-04-24 09:15:04
$ git fetch --help
--depth=<depth>
Mendalam atau memendekkan sejarah repositori cetek yang dicipta oleh klon git dengan pilihan --depth=
(lihat git-clone(1)) kepada bilangan komit yang ditentukan dari hujung setiap sejarah cawangan terpencil. Teg untuk komitmen yang mendalam tidak diambil.
大家讲道理2017-04-24 09:15:04
git fetch --depth=1000000
Saya melihat penyelesaian pada stackoverflow, tetapi ia masih tidak berfungsi selepas saya mencubanya.
http://stackoverflow.com/questions/6802145/convert-shallow-clone-to-full-clone