我是 Git 的新手,我正在学习 Git。
我用 git 添加了一些文件:
git add <file1>
git add <file2>
然后我想推迟复习,但我错了
git commit
这样我修改的文件就不会被审查了。
现在,如果我输入命令:
git status
上面说
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
nothing to commit (working directory clean)
我想恢复那个提交,我想把这些文件推进审查,而不是提交。 有人能告诉我该怎么做吗?