# git 总结
拉取代码:
```shell
git clone https://github.com/liulix2x/drivers.gpu.validation.linuxeng.ileaf.git
```
查看状态
```shell
git status
```
加入暂存区
```shell
git add .
```
提交:写入提交介绍
```shell
git commit -s -m
git commit -s --amend
git pull 保持和远程库一致
git push 提交远程库
```
```shell
1.从DEV开始工作
git fetch 远程与本地同步,但是远程回留存记录
git checkout -b dev origin/dev 根据远程库dev建立本地dev
git branch -a 查看本地分支
```