将git直接克隆到web根目录

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

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

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

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

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

此外,这是部署的最佳方法,还是应该创建符号链接?


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

看到这个问题的更多细节。


克隆到cwd:

git clone git@github.com:example/myrepo.git .
链接地址: http://www.djcxy.com/p/90487.html

上一篇: Cloning git directly into web root public

下一篇: Clone contents of a GitHub repository (without the folder itself)