We got a whole system using hglib
for quite some time and we're creating an abstraction layer to customize some needs of the system, but I'm having trouble understanding an equivalent of
hg clone source destination --noupdate
in Git
-U --noupdate the clone will include an empty working directory (only a repository)
https://www.mercurial-scm.org/repo/hg/help/clone
Thank you in advances.