1.覆盖更新
git fetch --all
git reset --hard origin/master
2.舍弃追踪某个文件
# 舍弃追踪 CarDataSpider/utils/DB.py
git update-index --assume-unchanged CarDataSpider/utils/DB.py
# 继续追踪
git update-index --no-assume-unchanged CarDataSpider/utils/DB.py
1.覆盖更新
git fetch --all
git reset --hard origin/master
2.舍弃追踪某个文件
# 舍弃追踪 CarDataSpider/utils/DB.py
git update-index --assume-unchanged CarDataSpider/utils/DB.py
# 继续追踪
git update-index --no-assume-unchanged CarDataSpider/utils/DB.py