本文作者:丁辉
Git免密拉取代码
第一种
生成密钥
1
ssh-keygen
查看密钥
1
cat ~/.ssh/id_rsa.pub
到代码仓库配置 SSH 密钥直接 git clone 免密拉取
第二种
在命令里使用账号密码或令牌拉取
1 | git clone -b main --depth=1 https://$GIT_USERNAME:$GIT_PASSWORD@github.com/offends/demo.git |
1 | git clone -b main --depth=1 https://$GIT_TOKEN@github.com/offends/demo.git |
I'm so cute. Please give me money.
- 本文链接: https://blog.offends.cn/Linux/Git/Git免密拉取代码.html
- 版权声明: 本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。