标签: git push
答案 0 :(得分:1)
即使您在下一次提交中删除了该文件,旧提交仍然存在,仍然会被推送。
你必须做git reset --hard <sha hash of commit before adding the misc files>。
git reset --hard <sha hash of commit before adding the misc files>
完成上述操作后,添加文件的提交将会消失。你现在可以开始工作和推动了。
如果您在添加这些文件之间有其他提交(您需要),那么现在可以执行git rebase -i <hash before file adding>并删除添加文件的提交
git rebase -i <hash before file adding>