更改本地计算机上的git存储库的名称

我在名为site.git的远程存储库中有一个git存储库。 我想在子目录site/www/创建一个本地存储库。 当我简单地将资源库克隆到www目录时,我得到site/www/site

我怎样才能建立我的本地存储库没有额外的目录?


cd site/www
git clone site.git .

一个类似的问题已经被问到,并且有一个完美的答案:

你如何克隆一个git仓库到一个特定的文件夹?


我会给出最简单的解决方案。 使用命令:

git clone <repository> [<directory>]

链接到文档:git-clone

链接地址: http://www.djcxy.com/p/90499.html

上一篇: Change the name of a git repository on the local machine

下一篇: Can I specify the folder name of a cloned repository on Github for Windows?