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 的文件夹中创建了一个新的仓库,里面有一堆预先写好的源代码,但是现在当我尝试推送它时,没有“master”。帮助。
您需要提交目录的内容以创建初始提交:
git add . git commit -m 'Initial commit.'
否则,Git 没有什么可以推动的。
你完成了你的初始提交了吗?
git add . git commit -m "Initial commit" git push -u origin master