要从git中删除最后一次提交,您只需运行
git reset --hard HEAD^
如果要从顶部删除多个提交,则可以运行
git reset --hard HEAD~2
删除最后两个提交。您可以增加数量以删除更多提交。
更多信息在这里。
这里的Git tutoturial提供了有关如何清除存储库的帮助:
您要从历史记录中删除文件并将其添加到.gitignore中,以确保不会意外重新提交该文件。对于我们的示例,我们将从GitHub gem存储库中删除Rakefile。
git clone https://github.com/defunkt/github-gem.git
cd github-gem
git filter-branch --force --index-filter \
'git rm --cached --ignore-unmatch Rakefile' \
--prune-empty --tag-name-filter cat -- --all
现在我们已经从历史记录中删除了文件,让我们确保我们不会意外地再次提交它。
echo "Rakefile" >> .gitignore
git add .gitignore
git commit -m "Add Rakefile to .gitignore"
如果对存储库的状态感到满意,则需要强制推送更改以覆盖远程存储库。
git push origin master --force