操作步骤 指令如下: 1 2 3 4 5 6 7 git config --global credential.helper store sudo tee ~/.git-credentials <<-'EOF' https://user:password@gitee.com EOF 这个在只能走https协议的场景下非常好使,但是要记得将自己的账号设置成需要邮箱或手机号验证的,因为这种方案很容易泄漏账号信息。 Git客户端修改默认的编辑器 Git客户端配置代理
操作步骤 指令如下: 1 2 3 4 5 6 7 git config --global credential.helper store sudo tee ~/.git-credentials <<-'EOF' https://user:password@gitee.com EOF 这个在只能走https协议的场景下非常好使,但是要记得将自己的账号设置成需要邮箱或手机号验证的,因为这种方案很容易泄漏账号信息。