我按照以下步骤操作:
$ cd $Home/projects/
$ git clone https://github.com/someUser/someRepo.git
$ git add .
fatal: Not a git repository (or any of the parent directories): .git
$ git commit -m "first commit"
fatal: Not a git repository (or any of the parent directories): .git
答案 0 :(得分:6)
按照以下步骤操作:
step 1 : cd to $Home/projects/
step 2: git clone https://github.com/someUser/someRepo.git
step 3: cd someRepo
step 3: git add .
step 4: git commit -m "first commit"
注意:在您的情况下,前两个步骤正常。但之后你必须cd someRepo
移动到git repo目录。在那里你可以添加文件。
错误:您收到错误fatal: Not a git repository (or any of the parent directories): .git
,因为根据您的步骤,您所在的$Home/projects/
不是git存储库。克隆git clone https://github.com/someUser/someRepo.git
后,它将在someRepo
中创建一个名为$Home/projects/
的目录。所以$Home/projects/someRepo
是一个不是$Home/projects/
的git存储库。
答案 1 :(得分:3)
您忘了转到下载的存储库。
使用cd someRepo
进入目录,然后添加文件。