删除所有本地文件并从git下载新的副本
这个问题在这里已经有了答案:
要删除您在本地添加的git commit,请执行以下操作:
git reset --hard HEAD^
要删除删除未提交的文件,请执行以下操作:
git clean -fd
在此查看其他git Clean选项:
https://git-scm.com/docs/git-clean
然后做
git fetch
git rebase origin/master
要么
git pull
链接地址: http://www.djcxy.com/p/26235.html
上一篇: Delete all the local files and download a fresh copy from git
下一篇: Why does EditText retain its Activity's Context in Ice Cream Sandwich