解决windows下git push卡住问题的方法

问题描述:

在windows下向使用git协议传输的Git Repo进行push时会卡住。

--

这是windows上的msysgit的bug,在新版本上已经修复,但要在.gitconfig中做一项配置,不然还是会卡住。

配置内容为:

sendpack.sideband=false

也可以在命令行上添加:

git config --global sendpack.sideband false
原文地址:https://www.cnblogs.com/hyang0/p/git_push_win_issue.html