一、註冊github,並建立代碼庫 linux
地址:https://github.com/ git
註冊github,登錄後, 點擊右上角 「Create a new repo」 按鈕,Repository name輸入Hello-world, 選中 public ,github
點擊Create repository按鈕,庫建立成功。shell
二、安裝git,並設置git 測試
下載地址http://code.google.com/p/git-core/downloads/list google
安裝完git後,執行:spa
git config --global user.name "Your Name Here" git config --global user.email "your_email@youremail.com"
user.name 爲全局的用戶名code
user.email 爲github的註冊郵箱,用於與github關聯。 ip
三、建立本地庫,並提交原始版本文件 rem
在主目錄中建立Hello-world目錄,進入該目錄,執行git init,出現.git的隱藏子目錄;建立README文件做爲測試提交的文件,vi編輯該文件輸入Hello World!.
cd ~/Hello-world git init touch README
四、提交原始版本文件
git add README git commit -m 'first commit'
將README提交,此時並不影響 遠程github的庫。
五、PUSH到遠程github
git remote add origin https://github.com/username/Hello-World.git git push origin master
其中https地址能夠在github上找到。
shipley@linux-vo4i:~/Hello-world> git push origin master
Username for 'https://github.com': username
Password for 'https://hsp8712@github.com': ******
Counting objects: 3, done.
Writing objects: 100% (3/3), 216 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/hsp8712/Hello-world.git
* [new branch] master -> master
提交成功