“git pull” 强制覆盖本地文件
放弃本地修改,使用服务器代码覆盖本地的Git命令如下:
git fetch --all
git reset --hard origin/master
git pull
上面代码使用master分支覆盖本地代码。如果需要使用其它分支覆盖本地代码,则更改第二条命令的参数。
标签:pull,git,覆盖,代码,master,本地,强制 From: https://www.cnblogs.com/Star-Haitian/p/16964637.html