gitlab使用手册

帐号注册申请


项目gitlab地址: https://git.deepblueai.com

首先使用自己的公司邮箱注册一个gitlab帐号,

gitlab使用手册_第1张图片

注册完成后,帐号即为邮箱(git config–global user.name),然后sign in,如果管理员将你加入了你参与的项目,就会看到类似下图的界面:

gitlab使用手册_第2张图片

Gitlab帐号配置

设置gitlab活动邮件提醒

如下图所示,进入notification设置

gitlab使用手册_第3张图片

gitlab使用手册_第4张图片

设置好notification接收的email就可以了,上图右边可以看到自己参与的所有项目,通过下拉框选择notification level

添加ssh公钥

首先在linux本地用ssh-keygen生成公私钥对(id_rsa、id_rsa.pub) , 然后将id_rsa.pub内容复制到gitlab上,如下图所示:

gitlab使用手册_第5张图片

这一步完成后,你就可以用git客户端工具进行操作了。

Git操作

git 配置


git config --global user.name 邮箱帐户  //注意user.name不是gitlab guide上写的你名字全称

git config –global user.email 邮箱帐户

touch ~/.git-credentials;echo https://username:[email protected]> ~/.git-credentials

在gitlab上,选择一个项目进行clone


gitlab使用手册_第6张图片

gitlab使用手册_第7张图片

git clone [email protected]:system_sw/test.git

git提交操作


gitlab对于developer提交代码有安全要求,需要从稳定分支master派生到本地分支local,然后在local上进行修改提交后,再提交merge request给管理员审核,审核通过后,local上的修改才会merge到master上去。

以test项目为例:


gitlab使用手册_第8张图片

本地提交到git服务器上后,developer需要到gitlab上进行merge request,如下图所示:


gitlab使用手册_第9张图片

gitlab使用手册_第10张图片

gitlab使用手册_第11张图片

gitlab使用手册_第12张图片

注意title填写使用WIP:前缀,可以防止该次merge request就绪前被merge

在”Assign”栏选择merge request分发给管理员,然后点击“submit mergerequest”按钮

gitlab使用手册_第13张图片

管理员master接收到merge request请求后,需要对developers的merge request进行及时review处理以及解决conflict等问题,最后由master确认进行merge,将developer提交的修改merge到master分支








你可能感兴趣的:(嵌入式,android开发,代码管理)