networking - git port - network requirement -


When connected to my office network, I'm not always able to run git push. I think network setting problem How to troubleshoot the problem or what request should I request a network team?

You can try to run with some options set:

 < Code> $ GIT_TRACE = 2 git push  

This will emit additional debugging information and may be useful. If you are using an HTTP connection to your repository, you can try:

  $ GIT_CURL_VERBOSE = 1 git push  

or To get more information about on-the-wire transfers, you can:

  $ GIT_TRACE_PACKET = 1 git push  
GITTCRQKT

This packet will stop tracing once this packet transfer starts, but it can help to provide more information about the root cause. .

You can also add options that are probably the most useful invitation to get started:

  $ GIT_TRACE = 2 GIT_TRACE_PACKET = 1 git push  

Comments