Why would git-upload-pack (during git clone) hang?

后端 未结 5 1704
星月不相逢
星月不相逢 2020-12-10 01:19

I\'ve read several other \'git hangs on clone\' questions, but none match my environment and details. I\'m using git built under cygwin (msys git is not an option) to clone

5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-10 01:33

    I was having this same problem after I added some jazz like this to my ssh config in order to set window titles in tmux:

    Host *
    PermitLocalCommand yes
    LocalCommand if [[ $TERM == screen* ]]; then printf "\033k%h\033\\"; fi
    

    getting rid of that fixed my git.

提交回复
热议问题