Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了以下评论
git add /file1/path git rm /file/path git commit -m "message"
如何使用 git 撤消上一次提交?
就像我不想提交这些文件一样。
警告:如果您已经推送过,请不要这样做
你想做:
git reset HEAD~
如果您不想要更改并将所有内容都吹走:
git reset --hard HEAD~