git简单使用
——————————————————
git在本地windows安装之后,连接远程gitlab仓库,进行建立连接、checkout、pull、push等操作
1、与远程仓库建立连接:git remote add origin XXXXX.git
2、使用git branch 查看本地是否具有ccb_deploy分支
3、如果没有 git fetch origin ccb_deploy
4、在本地创建分支ccb_deploy并切换到该分支:git checkout -b dev origin/ccb_deploy
5、把gitLab上ccb_deploy分支上的内容都拉取到本地了:git pull origin ccb_deploy
6、将改变添加到缓存区: git add .
7、提交改动,执行后改动已经提交到了 HEAD,但是还没到你的远端仓库: git commit -m "代码提交信息描述"
8、 将这些改动提交到远端仓库:git push -u origin ccb_deploy (可以把 ccb_deploy 换成你想要推送的任何分支)