Github Windows 'Failed to sync this branch'

前端 未结 17 1282
南旧
南旧 2020-12-22 21:59

I am using Github Windows 1.0.38.1 and when I click the \'Sync\' button after committing, I get the error

\"ent

17条回答
  •  执念已碎
    2020-12-22 22:48

    I had the same problem. In my case git could not find the global variable %HTTP_PROXY%, simply because Windows was not providing/using it.

    I solved it by excluding the variable from the git config file (located in %USERPROFILE%\.gitconfig):

    [http]
    #   proxy = %HTTP_PROXY%
    

提交回复
热议问题