在公司內,專案開發使用的版本控制系統為 Subversion。
趁著撰寫軟體驗證 (Proof Of Concept) 的時候,將自己的程式碼上傳至並學習 GitHub。
筆者大多數的程式碼皆在 Ubuntu 上進行開發,故下列文章內容將以 Ubuntu 12.04 作為範例。
首先,GitHub 仍然是以 Git 為基礎的,所以必須在 Ubuntu 12.04 上安裝 Git
sudo apt-get install git
接下來,必須對 Git 進行配置 (configure)
git config --global user.name "Your GitHub Username"
git config --global user.email "Your GitHub 註冊 Email"
如果,今天你已經有現存的 repository,請先複製 (clone) 下來
git clone https://github.com/Your GitHub Username/Your Repository Name.git
接著,可在您複製的資料夾內進行專案管理。
如果您新增了一份檔案,最終您必須將檔案新增至 repository。
git add Your New File
新增完畢,將檔案 commit 至 repository
git commit -m 'Your commit message'
最後,將您修改的檔案 push 回 GitHub
git remote add origin https://github.com/Your GitHub Username/Your Repository Name.git
git push origin master
( 輸入您的帳號與密碼 )完成上述流程,一切就大功告成囉!