Sending a non-git Xcode Project to BitBucket
from GitHub is the most popular place to host your repos but if you are looking for a free service for teams that are 5 members or less then take a look at BitBucket. Here are instructions for moving a local Xcode project onto BitBucket. (Note: if you opted for a local Git when you created your project you should be able to skip steps 3 and 4.)- Sign-up for BitBucket and create a repo
- In Xcode go to Source Control menu
- Select "Create a working copy ...."
- Select project and press Create in dialog window
- Return to Source Control menu and select <Project Name> -> Configure <Project Name> ...
- Click "Remotes" tab
- Press add "+"
- Copy and paste the https address you see at the top right of your repo page into the remote location in Xcode
- Go to Source Control menu and select Push... to upload the project
Pushing code updates to BitBucket
Now you have it set up whenever you want to push code to the project:- Go to Source Control menu and select Commit
- Write a commit note and uncheck anything not to be included in the commit
- Return to Source Control menu and select push
- Select the correct branch and Push
Pulling code down from BitBucket repo
To get code provided by others down from BitBucket:
- Go to Source Control menu and select Pull...
Comments
Post a Comment