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 存储库:
git init
然而,没有“主人”
git branch
什么都不返回。
如何创建master分支并将其设置为包含现有文件和文件夹的文件夹中的初始分支和唯一分支?
master
分支是提交第一个文件后自动创建的master默认分支:
git add . git commit -m "initial commit"