GIT命名我的存储库

时间:2012-04-10 16:08:03

标签: git

我正在关注运行$ git clone --bare stef_project stef_project.git的{​​{3}}。我得到fatal: repository 'stef_project' does not exist.

好像我的回购没有名字。在.git文件夹中有一个DESCRIPTION文件,其中包含我用stef_project替换的默认消息,现在当我再次运行clone命令时,仍然会收到相同的错误消息。< / p>

如何命名或重命名我的回购?

2 个答案:

答案 0 :(得分:4)

您目前的工作目录是什么?假设它被称为“mydir”,您可以移动上面的一个目录并像这样克隆:

cd ..
git clone --bare mydir stef_project.git

答案 1 :(得分:0)

就我而言,我发现这可行:

D:\AEMS\AEMS Website>git clone --bare "AEMS Website" AEMS_Website.git
fatal: repository 'AEMS Website' does not exist

D:\AEMS\AEMS Website>git clone --bare . AEMS_Website.git
Cloning into bare repository 'AEMS_Website.git'...
done.

似乎文件夹名称中的嵌入空间导致使用“。”的问题。避免。