1.stash
git stash save "开发区存储到暂存区"
git stash list 查看所有的暂存区版本
git stash pop 弹出暂存区最后一次存储的版本,会删除并弹出的暂存区
git stash apply stash@{0} 根据指定的暂存区版本还原
git stash drop stash@{0} 删除暂存区
2. remote
git remote -v 查看git远程的地址
git remote remove origin master
git rm -r --cache .
git add .
git commit -m "gitignore working"
git checkout -b branchName(创建新分支)
3.config
git config user.name
git config user.email
git config --global user.name "wucoder"
git config --global user.email "邮箱"
4.push pull
git pull 简单的拉取
git push