1、在桌面上右键Git Bash Here
2、命令行创建一个目录
mkdir docs
3、定位到创建的目录
cd docs
4、克隆gitlab的项目到本地
git clone http://gitlab.bbdu.com/test/docs.git
5、查看当前目录清单
ls
6、定位到xx-docs目录下
cd xx-docs
7、查看本地+远程的分支
git branch -a
8、监控工作区的状态树,使用它会把工作时的所有变化提交到暂存区,包括文件内容修改(modified)以及新文件(new),但不包括被删除的文件。
git add .
9、提交代码
git commit -m ‘我的修改’
eg: git commit -m ‘update xxx’
10、推送到远程仓库
git push origin master