xcode使用自帶git respository管理專案
阿新 • • 發佈:2019-01-28
本地git環境:
1、xcode自帶git環境,使用git需要安裝命令列工具(Preferences->Downloads->Components->Command Line Tools)
2、在專案資料夾根目錄用**命令列**新增一個倉庫
3、在Xcode下新增倉庫(Organizer->Repositories->add Repository[左下角的'+'按鈕])新增路徑為本地專案的路徑
4、提交專案到git(File->source control->commit)
遠端github提交:
1、github註冊帳號,新建一個倉庫(create a new repo)此時會生成一個SSH地址。 2、xcode新增遠端repo,這裡有兩個步驟: 本地生成SSH鑰匙,就不用每一個remote都輸入密碼,這裡是教程[SSH 連結github配置教程][1](可能需要FQ) 在xcode 中的倉庫管理目錄下有一個Remotes資料夾,新增一個remote,名字隨便起,location就是上面所說github倉庫生成的SSH地址。 3、上傳專案(File-> source control->push)這個過程可能出現很多問題,比如:remote no found、先pull然後再push