修改地址仓库地址
cd $project
cd .git
vim config
[remote "origin"]
url = https://oauth2:访问令牌@仓库地址
或者使用 basic 认证
[remote "origin"]
url = https://username:pwd@仓库地址
ssh 公钥加入到 gitlab
# 配置密钥 一路回车
ssh-keygen -t rsa -C '[email protected]'
# 验证效果
ssh -T [email protected]
Welcome to GitLab, @guanchaoguo!
标签:origin,令牌,git,仓库,Gitlab,拉取,地址,ssh
From: https://www.cnblogs.com/guanchaoguo/p/17869274.html