Git工具链接Gitlab仓库的方法

Posted zhangrui153169

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git工具链接Gitlab仓库的方法相关的知识,希望对你有一定的参考价值。

Create SSH link to Gitlab
1. open "Git Bash"
2. ssh-keygen -t rsa -C "name_of_gitlab_account"
3. "Enter" three times
4. C:UsersAdministrator.ssh ========>> id_rsa and id_rsa.pub
5. copy the content of id_rsa.pub to SSH Keys in Gitlab.com

Base operation
1.git init
2.git remote add origin http://xxx@xx.git
3.git fetch
4.git branch branch_name origin/branch_name
5.git checkout branch_name
6.git add .
7.git commit -m “commit message”
8.git push origin branch_name

Make tags
1.git tag -a tag_name -m ‘tag message‘
2.git tag -l
3.git push origin tag_name

以上是关于Git工具链接Gitlab仓库的方法的主要内容,如果未能解决你的问题,请参考以下文章

gitlab的镜像仓库链接地址用户名是指的登录名还是自己取的

CI/CD之搭建私有git仓库gitlab

CI/CD之搭建私有git仓库gitlab

CentOS安装gitlab服务及创建git仓库实践笔记

CentOS安装gitlab服务及创建git仓库实践笔记

版本管理工具 Gitlab