Git http.proxy Setting

后端 未结 2 1876
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-01 23:18

I was trying to figure this git thing out and at one moment I messed with the http.proxy variable. Right now it\'s just nonsense, \'asdf\' so pushing doesn\'t work. I don\'t kno

2条回答
  •  离开以前
    2021-02-02 00:10

    You added an entry to your git config file by mistake. You can manipulate the both the global and per-repository config files using git config.

    To find out if you added the proxy entry to the global or local config files run this from the console:

    git config -l --global | grep http  # this will print the line if it is in the global file
    git config -l | grep http # this will print the line if it is in the repo config file
    

    Then to remove all the http.proxy entries from either the global or the local file run this:

    git config --global --unset-all http.proxy # to remove it from the global config
    git config --unset-all http.proxy  # to remove it from the local repo config file
    

    I hope this helps.

提交回复
热议问题