# 常用命令
~~~
git add . //ga
git status //gs
git diff //gd
git commit -m "desc" //gcm
git push //gp
git checkout -b feature_1 //gcb
git pull origin master //gpom
~~~
## 偶尔用到
~~~
git push --set-upstream origin dev_2
git stash
git log
git cherry-pick xxx
git init
git clone
~~~
### 很少用到
~~~
git config --global user.name "muName"
git config --global user.email "myEmail"
~~~