## git删除已进行版本控制的文本git
git rm -r --cached /path/to
## 检出的git工程,有内容修改又想切换分支,能够隐匿修改的内容(注意:隐匿的文件将永久删除)bash
git stash --include-untracked 或者 git stash -u