我正在开发一个iOS项目。我们的员工创建了一个存储库说应用程序,默认情况下我们有一个主分支。员工创建了另一个分支说"秒"现在我需要将我的项目文件从我的机器上传到Github存储库的分支机构" Second"看了很多教程,并没有理解什么以及如何做到这一点...这个问题可能已经问过了,但抱歉没有帮助任何...
答案 0 :(得分:0)
首先,对项目进行完整备份,这样做 如果出现问题,你可以恢复它。
如果您有本地git存储库(在终端中,您可以在项目目录中执行“ls -la”命令后看到.git和.git ****文件):
1) Open your project folder with your local git repository in Terminal and add your Github repository as origin:
$ git remote add origin https://github.com/your_user/your_repo.git
(This url you can see at Github repo)
2) Push all your local branches onto repository:
$ git push --all origin
如果您没有本地git存储库:
1) Create new folder, go inside it and in Terminal execute this:
$ git clone https://github.com/your_user/your_repo.git
2) Copy all your iOS project (with inner files/folders/etc) into that folder
3) Add all your local files into local git repo:
$ git add .
4) Commit all changes:
$ git commit -m initial
5) Push all your local branches onto repository:
$ git push --all origin
Also see Github help:
https://help.github.com/articles/adding-a-remote/
https://help.github.com/articles/pushing-to-a-remote/