Bootstrap

git pull 显示 Already up-to-date,但文件并没有更新【伸手党福利】

解决方法

(注意,后面都要带着.这个符号)
放弃所有的缓存

git reset HEAD .

放弃掉所有还没有加入到缓存区(git add)的修改

git checkout .

然后重新pull

git pull
;