Add Xcode project to github repo?

☆樱花仙子☆ 提交于 2019-12-29 02:33:08

问题


I have JUST created a new github repo on the website. Keep in mind that I am a noob but can do basic things in terminal. Anyway, so I just created the repo on my account on github.com and didn't do a single thing to it yet.

So all I want to do is take my Xcode project folder and upload it to my new github repo. How do I do this via terminal?


回答1:


The best way really is to follow the instructions GitHub gives you:

First, go the correct directory

cd <directory of your Xcode project>

It sound like you've already got a local Git project from Xcode. If that's true, skip this code block.

git init .
git add .
git commit -s
<type in a commit message>

Last, push into your repository. The following is copied directly from my own github account, after I created a new "test" repo. Change the "dhalperi/test" part.

Push an existing repository from the command line

git remote add origin git@github.com:dhalperi/test.git
git push -u origin master



回答2:


I was just going to leave a comment above but I will also add a summarized answer. My full answer is here.

This isn't via terminal as the question requests, but you can consider this an alternate method. It is well integrated with Xcode now, though, and not difficult to do.

Create Git repository when making a new project

See the answer I linked to above if you already have a project without a Git repository.

Make a Commit

After making a change in your project, select Commit... from the Source Control menu. You will add a short commit message.

Create a new GitHub repository

On the GitHub website make a new repository. Call it whatever you want, but don't add a README or .gitignore or license yet. After creating the new repository copy the link to it.

Add a Remote in Xcode

in Xcode go to Source Control > your branch name > Configure. Then click the Remote tab > "+" button > Add remote. Fill in your repository name and address.

Push your project to GitHub

Go to Source Control > Push. You will have to enter your GitHub user name and password the first time.

That's it. Now any time you make changes in Xcode, all you have to do is Commit and Push.

If you didn't follow this explanation, please read this and this for more detail.

Further Study

This is an excellent video that I recently watched that helped me understand Git and its integration with GitHub much better.

  • The Basics of Git and GitHub



回答3:


Get the Github Mac Application, you don't really need a terminal unless you want to do more fancy advanced stuff ;-)

Simply go to your project page on GitHub, then click on "Clone in Mac", this should automatically download and install it for you. You have to do this at least once to install the app and setup some required permissions.

After that, you'll see the GitHub Application in your Dock, simply open it, then click on that small "+" sign at the bottom, there you'll see "Create New Repository" and "Add New Local Repository".

You can either add the repository that XCode already created for you or download one from GitHub, then open it in XCode.




回答4:


a non terminal solution is to install SourceTree. Its a GUI thats super easy to use compared to the terminal. But its highly recommended to learn git commands properly.




回答5:


if you already have a git repo on your Mac and using Xcode 9,

for xcode 9, just go to the source control tab in the navigation inspector in Xcode. right click on the master git and select create "Your project name" remote on GitHub.

give your GitHub credentials and give a name to git repo and Xcode will create and push your code for you.



来源:https://stackoverflow.com/questions/12698482/add-xcode-project-to-github-repo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!