每次我尝试推送到 github 时,Git push 都会挂起。我正在使用 Cygwin 和 Windows 7。Git 在本地跟踪分支、提供状态、设置全局 user.name 和 user.email 并允许提交的功能很好。
我还是新手,还在学习。
我输入git push
,git push origin master
或者git push -u origin master
我只得到一个空白行,要求我用 ctl-c 来获取提示。
ssh-keygen -t rsa -C "me@example.com"
问我一个文件名并挂起
git push heroku master
挂起
$ git status
返回On branch master nothing to commit, working directory clean
$ git pull
返回Already up to date
$ git remote -v
返回:
heroku git@heroku.com:myherokusite.git (fetch)
heroku git@heroku.com:myherokusite.git (push) origin
https://github.com/gitusername/appname.git (fetch) origin
https://github.com/gitusername/appname.git (push)
or the correct ssh remote settings are returned when trying this with ssh
更新:使用 SSH urlgit@github.com:gitusername/gitrepo.git
也会挂起
git remote set-url origin https://github.com/gitusername/appname.git
是正确的
更新:当它挂起时,我可以看到在 Windows 任务管理器中运行的 git 进程。
我试过了:
使用不同的互联网连接位置
在 https 和 ssh 之间切换,它挂起
已卸载 git。从以下位置重新安装:https ://code.google.com/p/msysgit/downloads/list
已卸载 git。安装 Cygwin 的 git
已卸载 git。安装了 Github for Windows GUI 应用程序,我可以推送它。但是这个应用程序的功能有限,迫使我离开我的 Cygwin 窗口进入另一个应用程序,然后迫使我进入 Windows 命令提示符以获得完整的功能,我认为我已经通过使用 Cygwin 逃脱了。
花了很多很多时间试图解决这个问题,它之前完美无缺,谢谢。
更新 4/2014:我重建了我的整个机器 Win 7、Cygwin 等,现在一切正常