如何在我的本地机器上从内部目录而不是从存储库目录开始制作BitBucket git clone

时间:2015-08-21 14:19:26

标签: git bitbucket directory-structure

在BitBucket上,我的git存储库名为demorepo,因为我有这样的目录结构,即

demorepo/ 
        /src/..
        /pom.xml
        /readme.txt

我希望在我的本地检查这个存储库,以便我可以使用此命令:

git clone https://example@bitbucket.org/demouser/demorepo.git

当我执行此命令时,它也会从我本地机器上的demorepo目录创建/启动但是我不想在我的本地机器上demorepo。我只想要文件&此demorepo存储库中的目录。

我该怎么做?

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

如果要克隆到当前目录,可以:

git clone https://example@bitbucket.org/demouser/demorepo.git ./

但请注意它应该是空白的(如果没有,git会告诉你有未跟踪的等等......)

您还可以将要克隆的目录命名为:

git clone https://example@bitbucket.org/demouser/demorepo.git myDirectoryName