We recently migrated from GitHub to our own internal Atlassian server for JIRA and Bitbucket, but wanted to continue to use Xcode for git management.It requires some initial steps to setup but once that is done you will be able to use Xcode as before to make commits, create branches, etc.1. Using Bitbucket create a blank repo with the project title or import a repo from GitHub.2. Follow the instructions Bitbucket gives (listed below for connivence).With Terminal Configure Git for the First Timegit config --global user.name username git config --global user.email email@address.comPushing an Untracked Project to Bitbucketcd existing-project git init git add . git commit -m Initial commit git remote add origin https://<username>@bitbucket.org/<username>/<repoName>.git git push -u origin masterPushing a Tracked Project to Bitbucketcd existing-project git remote add origin https://<username>@bitbucket.org/<username>/<repoName>.git git push -u
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags: