git强制pull代码,放弃本地修改 Gary 8 年前 解决方法: git fetch --all git reset --hard origin/master git fetch只是下载远程的库的内容,不做任何的合并。 git reset把HEAD指向刚刚下载的最新的版本。