1、1226445746@qq.com创建一个项目
添加组成员 jerome@jeromelee 2575227195@qq.com
2、本地clone
ssh-keygen -t rsa -C ”2575227195@qq.com”
git config -l 查看配置
设置username 和email 避免每次提交输入
git config --global user.name "jerome"
git config --global user.email "2575227195@qq.com"
(global 范围是本机登录用户)
在用户目录下生产ssh
id_rsa.put中的内容复制到gitlab的
git clone git@gitlab.com:xxxx/xxx.git
生产一个文件夹,将需要上传的文件复制到该文件夹下
git add .
git commit -m "first"
git push origin 分支名称 (默认推送到master上)
网友评论