我正在尝试将所有提交和文件回滚到特定提交。我想摆脱我所做的所有更改以及从该特定提交开始创建的所有文件。
我尝试使用以下方式回滚:
git checkout #commit_to_restore_to
git reset --hard #commit_to_restore_to
我得到确认HEAD is now at #commit_to_restore_to "Commit_message"
但是,我的文件与以前完全相同。如何回滚我的所有文件?
我在 Ubuntu 12.10 上。
以下是更多信息:
$ git status
<<fill this in>>
# git diff --name-status #commit_to_restore_to #provide real commit number please.
<<fill this in too>>