2018-07-22

# 关于gitLab的使用

  1. 已有项目的情况下:
  • 在项目中注册gitLab 账号
  • 并开通权限
  1. gitLab 添加远程分支

  2. 把远程上的代码克隆到本地

  • 在本地git clone 远程仓库地址

4.配置用户名和邮箱

  • git config --global user.name "you name"
  • git config --global user.email "[email protected]"

5.建立本地仓库和远程仓库的关联

  • git remote add origin 远程仓库地址

6.建立本地分支

  • git checkout 分支名
  1. 查看本地分支
  • git branch

8.查看本地和远程分支

  • git branch -a

9.修改代码

10.提交代码到本地仓库

  • git add .
  • git commit -m "注释"

11.拉取代码到本地

  • git pull origin 本地分支:远程分支

12.推送代码到远程

  • git push origin 本地分支:远程分支

你可能感兴趣的:(2018-07-22)