Reputation: 2057
I'm trying to add a remote git repository in xcode project but I'm unable to find an option for that. getting option as
but expecting
Is there any other way to add remote repository to a project?
Upvotes: 32
Views: 25317
Reputation: 88
Learning to do git from the console is very easy too use this as a reference
Upvotes: 0
Reputation: 1354
You can use this command in terminal:
git remote add origin https://Your_git_URL.git
Upvotes: 8
Reputation: 1603
Navigate to Source Control
tab right next to the Project Navigator
, then right click
on your project and select the Add Existing Remote
.
Then enter your remote URL.
Upvotes: 72