iOS:使用命令列將代碼託管到OSChina上

來源:互聯網
上載者:User

標籤:ast   管理   origin   git   命令   配置   org   commit   int   

註冊帳號:

  • 請先註冊http://git.oschina.net。
環境準備:
  1. Xcode(直接AppStore下載安裝)
  2. Git(可以在http://code.google.com/p/git-osx-installer/下載git安裝程式,或者在https://www.kernel.org/pub/software/scm/git/下載源碼安裝。)
源碼安裝過程:
  1. 解壓源碼包

     tar xjvf git-1.8.3.tar.bz2
  2. 編譯

      cd git-1.8.3 ./configure --prefix=/usr/local make
  3. 安裝

    sudo make install
配置Git並串連到[email protected]

請參見老左的部落格Xcode串連[email protected]中第一步至第四步。

將工程同步到[email protected]
  1. 在你的git.oschina.net下“建立項目”。
  2. 在你的電腦上,為了以後管理方便,應該為OSChina上的項目建立一個檔案夾統一管理,例如gitOSChina。在次級目錄下存放每一個項目。
  3. 開啟命令列工具,執行命令:

     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        將修改推送到遠程庫
  4. 至此,建立工程完成了。
更新工程
  1. 類似於建立項目時的操作,開啟命令列工具,執行命令

    cd gitOSChina/JBCalendar/            進入項目的目錄 git add .        添加所有檔案到版本庫 git commit -a -m "commit JBCalendar"    添加所有修改該版本庫 git pull origin master        從遠程庫擷取併合併到本地庫 git push origin master        將修改推送到遠程庫
  2. 至此,更新完畢。
錯誤小結

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上

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.