以某个tp5的项目为例:
git pull
git rm -r runtime
git commit -m ‘delete runtime‘
git pull
git push
git status
vim .gitignore
里面写:
.idea
runtime/
git status
git add .
git commit -m ‘ignore runtime‘
git pull
git push
原文地址:http://phpervip.blog.51cto.com/11075781/1917919