Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ターミナルで「git push」を実行すると、github のリポジトリが更新されません。ただし、git を初期化して、「git init」、「git add .」、最後に「git commit -m "Initial commit"」の 3 つを実行すると、リポジトリが更新されます。
誰かが私を助けることができますか?
実行せずに実行してみてくださいgit init。これが、新しいリポジトリをセットアップするコマンドです。すでにクローンがあるため、作成するものはありません。
git init
また、実際にコミットするにはいくつかの変更が必要です。実行するit status前にa を実行git add .して、実際にコミットする変更があるかどうかを確認します。
it status
git add .