将所有git clone https变成git clone ssh

你需要在你的~/.gitconfig(对于Linux和macOS)中设置正确的身份验证方法。如果你还没有这个文件,你可以创建一个。确保文件包含类似以下的配置:

[url "ssh://git@gitlab.xxxx.com:"]
    insteadOf = https://gitlab.xxxx.com/

这个配置告诉Git(以及通过Git操作的工具,比如Go)当它看到https://gitlab.xxxx.com/的URL时,应该使用ssh://git@gitlab.xxxx.com:的格式代替。

posted @ 2024-07-22 19:37  好人~  阅读(14)  评论(0编辑  收藏  举报