svn: OPTIONS of 'https://192.168.11.185/svn/ahwater-cloud': SSL handshake failed: SSL error: Key usage violation in certificate has been detected. (https://192.168.11.185)…
正常情况在gitlib上面可以看到代码里面有develop的分支 然而本地在查看所有分支的时候却报错 #查看所有的分支 git branch -a 这种情况是没有更新远程分支的索引,所以这样是看不到的, 直接使用命令检出也会失败 #直接检出develop分支报错 git checkout develop error: pathspec 'develop' did not match any file(s) known to git. 这种情况可以使用 #更新出远程分支索引 git fetch 之…