我的git项目的根目录已删除,我不知道为什么

时间:2016-07-25 16:37:17

标签: git

这是git status

的输出
Changes not staged for commit:
      (use "git add/rm <file>..." to update what will be committed)
      (use "git checkout -- <file>..." to discard changes in working directory)

           deleted:    FreeCodeCamp

no changes added to commit (use "git add" and/or "git commit -a")

FreeCodeCamp是我的git项目的根目录,因此我无法执行任何git命令。我不知道这是怎么发生的,但知道我的常见git命令是什么可能会有所帮助。我会定期将文件添加到我的git repo中,然后在一天结束时将它们推送到遥控器。

有谁知道这是怎么发生的?

1 个答案:

答案 0 :(得分:0)

  

FreeCodeCamp是我的git项目的根目录,因此我无法执行任何git命令。

我认为这不是真的。如果FreeCodeCamp是您的根目录,则无法运行git status来显示问题中的输出。

git status的这个建议很好:

use "git checkout -- <file>..." to discard changes in working directory

运行git checkout -- FreeCodeCamp应恢复您的目录。