1

Windows 7 で MINGW32 を使用しており、そのために Git を構成したいと考えています。
Git bash があることは知っていますが、MINGW32 インストールを使用したいです

現在、私の問題は、コードをプッシュできないことです。
「git push origin master」を発行した後、何かを待つのをやめるだけです。
おそらくssh構成の問題です(sshエージェントが見つからないのでしょうか?)が、それが何であるかわかりません。
これは私が見るものです

$ git push origin master --verbose
Pushing to git@github.com:mottalrd/myprj.git

その後何も起こらない

実際、ssh -T git@github.com を発行すると、ssh 接続が機能することに注意してください。

$ ssh -T git@github.com
Enter passphrase for key '/home/motta/.ssh/id_dsa':
Hi mottalrd! You've successfully authenticated, but GitHub does not provide shell access.

ありがとうございました

4

1 に答える 1

0

I discovered that this is a very well know problem and that it is related with mintty, which I had installed on top of MINGW

It is called the pty problem. You can browser the MINGW community to find people having this exact problem. I switched to console2 that is a replacement to mintty. This solved my problem

于 2012-07-13T05:27:05.233 に答える