修改项目bug在gitlab上
作者:互联网
第一步:$> ssh-keygen -t rss -C zhangsan@abc.com;
第二步:拷贝公钥到gitlab;
第三步:
$> git config —global user.name zhangsan
$> git config —global user.email zhangsan@abc.com
第四步:$> git clone git@lab.com:org/project.git;
第五步:$> git checkout -b project-20170227-zhangsan-bugfix;
第六步:修改代码;
第七步:git status;
第八步:git add .
第九不:git commit -am ‘bugfix’
第八步:git push --set-upstream origin project-20170227-zhangsan-bugfix
标签:git,第八步,bugfix,gitlab,project,修改,com,zhangsan,bug 来源: https://www.cnblogs.com/hxy--Tina/p/15704230.html