将git直接克隆到web根目录public_html中

时间:2011-06-04 20:51:22

标签: git github

使用github,当我克隆存储库时,它会创建一个带有存储库名称的子文件夹。

例如,如果我在我的Web根目录中执行以下命令:

git clone git@github.com:exampl/myrepo.git

...然后有一个文件夹public_html/myrepo/

如何在没有创建子文件夹的情况下直接将其克隆到public_html的根目录中?

此外,这是部署的最佳方法吗,或者我应该创建符号链接,例如?

2 个答案:

答案 0 :(得分:11)

git clone git@github.com:foo/bar .

有关详细信息,请参阅this问题。

答案 1 :(得分:5)

克隆到cwd:

git clone git@github.com:example/myrepo.git .