如何 git 从 *local bare* 仓库克隆
How to git clone from *local bare* repository
假设我在 ./new-bare.git
的本地计算机上有一个裸存储库。
将它克隆到我机器上的另一个位置的正确方法是什么?
git clone path_to_new-bare.git new_destination
从非裸存储库克隆没有区别:
/tmp> mkdir foo
/tmp> git init --bare foo
Initialized empty Git repository in /tmp/foo/
/tmp> git clone /tmp/foo /tmp/baa
Cloning into '/tmp/baa'...
warning: You appear to have cloned an empty repository.
done.
假设我在 ./new-bare.git
的本地计算机上有一个裸存储库。
将它克隆到我机器上的另一个位置的正确方法是什么?
git clone path_to_new-bare.git new_destination
从非裸存储库克隆没有区别:
/tmp> mkdir foo
/tmp> git init --bare foo
Initialized empty Git repository in /tmp/foo/
/tmp> git clone /tmp/foo /tmp/baa
Cloning into '/tmp/baa'...
warning: You appear to have cloned an empty repository.
done.