在同一台Windows 7计算机上使用Git和两个本地文件夹

时间:2014-12-10 20:17:34

标签: git windows-7

我试图在Windows 7笔记本电脑上学习Git(Git版本1.9.4.msysgit.2)。

我想创建一个source文件夹和一个code文件夹来练习。

我可以使用git init创建主文件夹,并使用git add .git commit -m "original file"添加测试文件。

然后在code文件夹中我使用git clone c:\source\ Git警告:

You appear to have cloned an empty repository.

并调用文件夹(master)。添加测试文件时,git add .git commit工作正常。但当我git push到我认为是主存储库时,Git会报告以下内容:

$ git push
fatal: 'c:source' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists. 

我找到了有关如何克隆远程存储库和从远程存储库进行克隆的参考资料,但我想了解如何首先实现本地文件夹事务。是否可能或我的逻辑中有哪些部分存在缺陷?

0 个答案:

没有答案