2013-08-22 29 views
0

我在使用代理訪問網絡的大學網絡中。我無法通過ssh和https訪問git集線器。我也設置了ssh_config netrc但出現錯誤。請幫助我?通過啓用代理的網絡在github中推送錯誤?

git push -u origin master Permission denied (publickey). fatal: The remote end hung up unexpectedly

我的ssh配置文件

SendEnv LANG LC_* 
HashKnownHosts yes 
GSSAPIAuthentication yes 
GSSAPIDelegateCredentials no 


Host github.com 
ProxyCommand /usr/bin/corkscrew 202.141.80.19 3128 %h %p ~/.ssh/myauth 
User git 
Port 443 
Hostname ssh.github.com 
TCPKeepAlive yes 
IdentitiesOnly yes 

我NETRC包含

`machine github.com 
`username [email protected]` 
`password password` 

回答