2016-07-09 3 views

Antwort

0

Sie können Ihr Projekt zu Ihrem Repository mit git bash verbinden wie dies:

$ cd /your/project/path/ 
$ git init 
$ git remote add origin [email protected]:ali/first_app.git # Or other repo URLs 
$ git push -u origin --all # pushes up the repo and it's refs for the first time 
$ git push origin --tags # pushes up any tags 

Hope nützlich sein.

+0

Mein Apps-Verzeichnis befindet sich in meinem Remote-Repository und kann GitHub Desktop zum Commit und zur Synchronisierung ohne Problem verwenden. Was ich nicht tun kann, ist die Quellcodeverwaltung in Xcode zu aktivieren. – Trekker

1

Ich habe das Problem gefunden. Unter Prevencences/Source Control wurde "Enable Source Control" nicht aktiviert. Nach der Überprüfung konnte ich mein Remote-Repository für GitHub hinzufügen.