標籤:ast 管理 origin git 命令 配置 org commit int
註冊帳號:
- 請先註冊http://git.oschina.net。
環境準備:
- Xcode(直接AppStore下載安裝)
- Git(可以在http://code.google.com/p/git-osx-installer/下載git安裝程式,或者在https://www.kernel.org/pub/software/scm/git/下載源碼安裝。)
源碼安裝過程:
解壓源碼包
tar xjvf git-1.8.3.tar.bz2
編譯
cd git-1.8.3 ./configure --prefix=/usr/local make
安裝
sudo make install
配置Git並串連到[email protected]
請參見老左的部落格Xcode串連[email protected]中第一步至第四步。
將工程同步到[email protected]
- 在你的git.oschina.net下“建立項目”。
- 在你的電腦上,為了以後管理方便,應該為OSChina上的項目建立一個檔案夾統一管理,例如gitOSChina。在次級目錄下存放每一個項目。
開啟命令列工具,執行命令:
cd gitOSChina/JBCalendar/ 進入項目的目錄 git init 初始化本地庫(僅第一次時需要) git remote add origin [email protected]:JustBen/jbcalendar.git 添加遠程版本庫的別名 git add . 添加所有檔案到版本庫 git commit -a -m "commit JBCalendar" 添加所有修改該版本庫 git pull origin master 從遠程庫擷取併合併到本地庫 git push origin master 將修改推送到遠程庫
- 至此,建立工程完成了。
更新工程
類似於建立項目時的操作,開啟命令列工具,執行命令
cd gitOSChina/JBCalendar/ 進入項目的目錄 git add . 添加所有檔案到版本庫 git commit -a -m "commit JBCalendar" 添加所有修改該版本庫 git pull origin master 從遠程庫擷取併合併到本地庫 git push origin master 將修改推送到遠程庫
- 至此,更新完畢。
錯誤小結
1. 錯誤:
git pull origin masterssh: Could not resolve hostname git.oschina.net:JustBen: nodename nor servname provided, or not knownfatal: Could not read from remote repository.Please make sure you have the correct access rights and the repository exists.
解決方案:
重新設定SSH
cd cd ~/.ssh/ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/Users/yongbin/.ssh/id_rsa): /Users/yongbin/.ssh/id_rsa already exists. Overwrite (y/n)? y Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /Users/yongbin/.ssh/id_rsa. Your public key has been saved in /Users/yongbin/.ssh/id_rsa.pub. The key fingerprint is: f8:87:a4:25:37:7c:bf:64:b1:4f:d5:e1:27:74:18:9e [email protected] The key‘s randomart image is: +--[ RSA 2048]----+ | . | | . + | | E..| | o ...o| | o S . . ..+| | B + . o o.| | . o . = . | | . o + | | . . | +-----------------+ cat id_rsa.pub | pbcopy 在git.oschina.net中添加一個SSH,直接複製到裡面即可 cd ~/OSChina/JBCalendar/ 進入工程目錄 git add . git commit -a -m "xxxxxxxxxxxxxx" git pull origin master git push origin master
iOS:使用命令列將代碼託管到OSChina上