1. 程式人生 > >用github託管專案

用github託管專案

Github是面向開源和私有的程式碼管理平臺。支援git分散式版本管控系統。Github的作用:
  1. 程式碼託管:把程式碼備份到github上。
  2. 專案管理:基於Git分散式版本管理系統。他對專案的每一個版本以及每個版本修改的內容有完整的記錄。
  3. 裝大神。
     註冊github自動略去。主要記錄下如何上傳專案到Github上。登入後進入主頁,點選右上角的➕號在彈出的子選單中選New repository(新建倉庫)

    跳轉到配置repository(倉庫)的介面


    新增倉庫完成後點選Clone or download 在彈出框中獲取到repository(倉庫)的地址


之後就可以在本地使用git命令把專案push到Github上

如果是第一次上傳

echo "# CqtekApp_iOS" >> README.md 
git init 
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/youraccount/yourprojects.git
git push -u origin master

如果是多人合作的專案,在上傳程式碼前,先把github上的程式碼pull到本地,push上區

$ git pull

$ git push -u origin master -f

關於報錯:

如果執行

git remote add origin 
https://github.com/youraccount/yourprojects.git

報錯 

 fatal: remote origin already exists.

意思已經很明顯,之前已經配置過專案的github上的倉庫。 處理方法是,先移除倉庫,在終端專案根目錄執行

$ git remote rm origin

(待更新)