# git checkout .
# git clean -xdf
stash是用来管理本地未提交的变更缓存的,变更被缓存后,当前工作区就变成干净的了,避免pull冲突。
# git stash
或者
# git stash save 'xxxxxx'
- 恢复上一次缓存的修改,并丢弃该次缓存
# git stash pop
- 应用上次缓存,但并不丢弃缓存
# git stash apply
# git stash list
- 删除本地某次缓存
# git stash drop stash名称(在list中可以看到,类似stash@{0})
- 删除本地所有缓存
# git stash clear
git config --global credential.helper store