删除本地文件后,想从远程仓库中重新 Pull 最新代码,但是执行了
git pull
命令后始终无法拉取下来,提示 Already up-to-date.原因:当前本地库处于另一个分支中,需将本分支 Head 重置到 develop
// git 强行 pull 并覆盖本地文件(依次执行)
git fetch --all
git reset --hard origin/master(master可修改为对应分支名)
git pull
标签:pull,git,文件,代码,拉取,Git,本地
From: https://www.cnblogs.com/xiqingbo/p/tool-01.html