1. 檢查本地git remote路徑是否為v9域名 git remote -v 2. 替換remote路徑: SSH: git remote set-url origin user@hostname/xxx HTTPS: git remote set-url origin https://hostname/xxx 3. 如果有特殊原因不能修改域名,設置不對SSL證書進行驗證(不推薦) git config http.sslVerify false 4. 如果想要全局生效可以通過以下命令設置 git config --global http.sslVerify false