gitlab上传本地项目
Posted yanux
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gitlab上传本地项目相关的知识,希望对你有一定的参考价值。
一、登录gitlab,创建项目
二、创建密钥(win10 git bash)生成key并添加ssh key
2.1 生成id_rsa和id_rsa.pub
ssh-keygen -t rsa -C "mars@xxxchina.com.cn"
2.2 找到C:Users登录用户名.ssh 目录,里面有两个文件:id_rsa和id_rsa.pub,用文本编辑器打开id_rsa.pub
2.3 复制项目url
2.4 git bash进入本地文件夹
2.5 输入用户配置信息
git config --global user.name "mars" git config --global user.email "mars@casachina.com.cn"
2.6 clone工程至本地
git clone http://IP:port/mars/auto_test.git
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
2.7 提交本地代码
git commit -m "added project DataDrivenTest"
git add .
git commit -m "Added DataDrivenTest"
git push origin master
以上是关于gitlab上传本地项目的主要内容,如果未能解决你的问题,请参考以下文章