这是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中,然后在一天结束时将它们推送到遥控器。
有谁知道这是怎么发生的?
答案 0 :(得分:0)
FreeCodeCamp是我的git项目的根目录,因此我无法执行任何git命令。
我认为这不是真的。如果FreeCodeCamp
是您的根目录,则无法运行git status
来显示问题中的输出。
git status
的这个建议很好:
use "git checkout -- <file>..." to discard changes in working directory
运行git checkout -- FreeCodeCamp
应恢复您的目录。