私はgitから始める初心者です。github にアカウントを作成しました。新しいリポジトリを作成しました。しかし、ターミナルを使用して github で変更をプッシュまたは更新することはできません。次のコマンドを実行しています。
mkdir ~/TestApplication
cd ~/TestApplication
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin https://github.com/vinayptl/TestApplication.git
git push origin master
最後のコマンドを実行するgit push origin master
と、しばらくフリーズし、次のエラーが発生します。
error: Failed connect to github.com:443; Connection timed out while accessing
https://github.com/vinayptl/TestingApplication.git/info/refs
fatal: HTTP request failed
私は Linux プラットフォームに取り組んでいます。何が問題なのですか?SOからの回答をいくつか見ましたが、この問題を解決できません。