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 の aa フォルダー内に作成済みのソースがたくさんある新しいリポジトリを作成しましたが、プッシュしようとすると「マスター」がありません。ヘルプ。
最初のコミットを作成するには、ディレクトリの内容をコミットする必要があります。
git add . git commit -m 'Initial commit.'
それ以外の場合、Git がプッシュするものは何もありません。
最初のコミットはしましたか?
git add . git commit -m "Initial commit" git push -u origin master