github for Windowsでsyncする際にエラーが出たとき(2)

以前、インストール直後にsyncしようと思った際に以下のエラーが出ました。

[ failed to sync branch. you might need to open a shell and debug the state of this repo. ]

以下の手順で回復しましたのでメモしておきます。

コミット権限があるかどうか確認するシェルを開いて「git push」を実行します。

git push

→以下のメッセージが出ました。

C:\Users\ユーザー名\Documents\GitHub\ディレクトリ名 [master]> git push

fatal: unable to access 'https://github.com/プロジェクト名/ディレクトリ名.git/': Could not
 resolve proxy: %HTTP_PROXY%

再度シェルを開いて「ssh -T git@github.com」を実行します。

ssh -T git@github.com

→以下の様なメッセージが出ました。

Warning: Permanently added 'github.com,192.30.252.131' (RSA) to the list of known hosts.
Hi [アカウント名]! You've successfully authenticated, but GitHub does not provide shell access.

C:\Users\ユーザー名 にある .gitconfig というファイルを開いて、 proxy = %HTTP_PROXY% を削除します。

以上でsyncできるようになりました。