Git
常用操作
Git 基本操作
基本流程
- git pull 拉下来
- git status 查看状态
- git add ./ 添加当前所有文件
- git commit -m “Words you want to commit” 评论
- git push origin master 发送
缓存
- git stash
- git stash list
- git stash pop filename{munber}
分支
- git checkout -b test 更换为分支
合并
- git log
- git merge (master)