以下は私の ~/.ssh/config コンテンツです
ForwardAgent yes
# Default PHP Fog user (name)
Host phpfog
HostName git01.phpfog.com
User git
IdentityFile /Users/Pk_2/.ssh/id_rsa_phpfog
# Default github
Host github.com
User git
Hostname github.com
PreferredAuthentications publickey
IdentityFile /Users/Pk_2/.ssh/id_rsa
しかし、phpfog リポジトリ フォルダーで git push を実行しようとすると、
Permission denied(public key)
fatal:the remote end hung up unexpectedly
しかし、id_rsa_phpfog の名前を id_rsa に変更しない限り、phpfog にプッシュできません。キーファイルを指定できますか
PHPFog 構成 - http://docs.phpfog.com/getting-started/ssh/