Mac设置连接github

设置SSH并绑定到github: https://help.github.com/articles/generating-ssh-keys

Xcode Setup

Create a new project in XCode (DO NOT select the local git repository/source control option, we will do this manually).
Close XCode (important!).

Local Git Setup
Browse to the project path where the .xcodeproj file is.
Execute the following from your command line:
git init
git add .
git commit -m 'Initial commit from local git'
git remote add origin [email protected]:ACCOUNT/PROJECT.git
git pull origin master
(VIM editor opens)
Hit 'i' to add a comment, for example 'Initial merge to sync local git with remote git'. 
Hit 'ESC'.
Hit 'ZZ'.
(VIM editor closes)
git push origin master


If you change any code in the project, you need to execute below command again or you will get "Changes not staged for commit" warning.
git add .

my account markwangen

猜你喜欢

转载自xiaohuafyle.iteye.com/blog/2108395