Failed to connect to github 443

后端 未结 4 1171
一向
一向 2021-01-04 19:18

I tried to push some changes to github using git push origin master, but after some time it showed an error

fatal: unable to access \'https://gi         


        
4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-04 19:45

    Are you behind a proxy? Check content of C:\Users\[your username]\.gitconfig and make sure proxy is configured:

    [http]  
        proxy = http://yourproxy.com:8080  //change your settings here
    [https] 
        proxy = http://yourproxy.com:8080  //change your settings here
    

提交回复
热议问题