我是 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)
我想恢复该提交,并且我想推送这些文件以供审查而不是提交。谁能让我知道我该怎么做?