作为git中的一个完整的菜鸟,我有以下问题:
我正在使用SourceTree
和BitBucket
。
我希望clone
以及将来git pull
一个具有根目录名hello
的仓库。但是,在我的本地计算机上,我需要根目录具有名称hello_world
,以使内容正常工作。
我该怎么做?
或者,我可以下载目录并手动重命名。如果是这样,那么我如何" connect"它使用SourceTree?现有的git repo?
答案 0 :(得分:2)
您可以使用命令行指定要将存储库克隆到的目录:
git clone git@bitbucket.org:teamsinspace/documentation-tests.git folder-name
Alternativley,只需将.git
文件夹移动到您想要项目根目录的任何位置即可。
您还可以重命名任何Sourcetree-cloned repo,并在Sourcetree中重新打开它。为了做到这一点:
答案 1 :(得分:0)