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