首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何克隆本地存储库

如何克隆本地存储库
EN

Ask Ubuntu用户
提问于 2019-09-01 20:05:58
回答 1查看 1.5K关注 0票数 0

我的机器上有两个文件夹放在一起。

  • /Documents/Learning/Project1
  • /Documents/Learning/Test for git

Project1内部有一个本地存储库,其中有一个提交,我想将它复制到另一个文件夹。我在运行命令:

代码语言:javascript
复制
/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1 .
fatal: repository '/Documents/Learning/Project1' does not exist

/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1.git .
fatal: repository '/Documents/Learning/Project1' does not exist

/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1.git .
fatal: repository '/Documents/Learning/Project1' does not exist

/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1/.git .
fatal: repository '/Documents/Learning/Project1' does not exist

/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1 .
fatal: repository '/Documents/Learning/Project1' does not exist

/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1 .
fatal: repository '/Documents/Learning/Project1' does not exist

/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1.git .
fatal: repository '/Documents/Learning/Project1' does not exist

/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1/git .
fatal: repository '/Documents/Learning/Project1' does not exist

/Documents/Learning/Test for git$ git clone /Documents/Learning/Project1/.git .
fatal: repository '/Documents/Learning/Project1' does not exist

但是我一直收到一个错误:存储库不存在,我遗漏了什么?

EN

回答 1

Ask Ubuntu用户

回答已采纳

发布于 2019-09-01 20:18:12

您的存储库不在/Documents/Learning/Project1中。在/home//Documents/Learning/Project1里。您还可以使用快捷方式~/Documents/Learning/Project1

请注意,不能将克隆复制到现有的(非空的)目录中,所以应该删除~/Documents/Learning/Test for git,命令应该是(assuming <#>assuming当前的工作目录是 ~/Documents/Learning/):

代码语言:javascript
复制
$ git clone ~/Documents/Learning/Project1/ ./Test\ for\ git/
票数 1
EN
页面原文内容由Ask Ubuntu提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://askubuntu.com/questions/1170084

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档