1.在本地运行ssh-****** -t rsa -C "[email protected]" -b 4096
生成SSH.
2.cat ~/.ssh/id_rsa.pub 复制里面的内容;之后去Gitlab项目页面,右上角->用户->Settings->
左边SSH Keys
将cat里面的内容粘贴到这个文本框里
3.git clone [email protected] 将gitlab上的项目克隆到本地
4.如果要上传文件的话
需要配置
git config --global user.email "[email protected]"
git config --global user.name "you"
5. git add . 当前目录的全部文件
6. git commit -m 'add file'
7.git push