git 使用过程中常见问题

  1. fatal: unable to access 'https://gitee.com/teststudio/test.git/': SSL certificate problem, verify that the CA cert
    error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

    1. 出现这样的情况是因为git clone默认采用SSL认证的时候,本地找不到对应证书,所以可以通过关掉验证来解决这一问题。
    2. 本用户名下永久关闭认证方法:
      1 git config --global http.sslVerify false
  2. linux记住git账号与密码
    1.   在~/.gitconfig中设置credential.helper=store,然后git pull时输入一次账号与密码即可

      [http]
              sslVerify = false
      [credential]
              helper = store
  3. 待续
上一篇:SpringBoot实现定时发送邮件


下一篇:LeetCode113. 路径总和 II