在Windows上使用Git和GitHubGitHub
Git是一個開源的完全分布式的原始程式碼控制系統, 它在開源社區中非常流行,已經大有頂替subversion在開源社區中地位的趨勢。
安裝和配置msysGit
這裡假定你使用的是Windows作業系統,雖然也許Git在Linux或者Mac系統上使用更方便。目前,在Winodws上比較好用的msysgit,可以在google code上下載: http://code.google.com/p/msysgit/。 目前最新的版本是1.7.0.2, 雖然是preview版本,但是基本上還是很穩定的。安裝過程很簡單,基本上一路next就好。 msysgit包括一個命令列工具和一個GUI程式。GUI目前還不是一個成熟的產品,但是如果你是在不想用命令列的話,也可以試試。
產生SSH Key
在使用Git前,需要先產生一個SSH Key,來保證你的local box和伺服器之間通訊的安全,識別代碼的改動。選擇一個檔案夾,單擊右鍵,選擇“Git Bash Here”, 然後在命令列視窗中輸入:
ssh-keygen –C “username@email.com” –t rsa
這裡使用的email地址是你註冊Git時使用的email地址。這裡基本上也一路enter就好了,中間會有一步提示你輸入 passphrase, 就是密碼或者通行碼,可以隨便編一個或者直接斷行符號,為空白就好。之後視窗會顯示產生的rsa檔案存放的位置。如果是在XP系統上,位置應該是 “C:\Documents and Settings\username\.ssh\”; 如果是在Win7系統上,位置應該是 “C:\Users\username\.ssh”。
註冊Git Account
註冊過程大同小異,唯一不同的地方就是需要輸入一個 “SSH Public Key”。這時就需要用到剛剛產生的rsa key檔案了。用notepad開啟id_rsa.pub,檔案的內容就是你的public SSH key. copy & past,註冊就完成了。
開始Git之旅
在source code檔案夾上使用 “Git Bash Here”,然後輸入你的Git name和郵箱
git config --global user.email username@email.com
git config --global user.name “username”
初始設定檔案夾:
git init
添加檔案
git add .
提交的伺服器
git commit –m ‘start project’
git remote add origin git@github.com:username/project.git
git push origin master
project.git是你在github建立的項目的名字
出現
The authenticity of host 'github.com (207.97.227.239)' can't be established. RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48. Are you sure you want to continue connecting (yes/no)?
正常情況,敲入yes斷行符號
Hi username! You've successfully authenticated, but GitHub does not provide shell access.
成功了