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.
我已经在我的 PC 上安装了 git 并创建了一个存储库。如何将我的整个 xcode 项目复制到 git 中?我可以手动将文件复制到分支文件夹中吗?
只需将文件复制到该目录,然后执行以下操作:
git add . git commit -m "Initial commit"
或者......只需在您已经拥有的项目中创建您的存储库,使用git init.
git init