git 中的 hg clone --noupdate 相当于什么?
What is the equivalent of hg clone --noupdate in git?
我们的整个系统使用 hglib
已经有一段时间了,我们正在创建一个抽象层来定制系统的某些需求,但我无法理解 [=15= 的等价物]
hg clone source destination --noupdate
在Git
-U --noupdate the clone will include an empty working directory (only a repository)
https://www.mercurial-scm.org/repo/hg/help/clone
在此先感谢您。
经过大量的网页浏览,找到了一个很好的等价物:
git clone --no-checkout
我的用例:
我们想要某种裸克隆,就像 --noupdate
flag 对 HG 所做的那样。
从技术上讲,在 git 中,我猜它只是在不检查的情况下进行克隆。
如果其他人有好的答案,欢迎您编辑此答案。
我们的整个系统使用 hglib
已经有一段时间了,我们正在创建一个抽象层来定制系统的某些需求,但我无法理解 [=15= 的等价物]
hg clone source destination --noupdate
在Git
-U --noupdate the clone will include an empty working directory (only a repository)
https://www.mercurial-scm.org/repo/hg/help/clone
在此先感谢您。
经过大量的网页浏览,找到了一个很好的等价物:
git clone --no-checkout
我的用例:
我们想要某种裸克隆,就像 --noupdate
flag 对 HG 所做的那样。
从技术上讲,在 git 中,我猜它只是在不检查的情况下进行克隆。
如果其他人有好的答案,欢迎您编辑此答案。