1. git 版本控制系統(tǒng)
相比CVS\SVN優(yōu)勢:
- 支持離線開發(fā),離線Repository
- 強(qiáng)大的分支功能,適合多個獨(dú)立開發(fā)者協(xié)作
- 速度塊
ps:關(guān)于git的更詳細(xì)的介紹于優(yōu)點(diǎn)在此就不介紹了,教大家怎么用是關(guān)鍵。:)
==============運(yùn)行環(huán)境========
系統(tǒng):windows
git : Git-1.7.3.1-preview20101002.rar 下載地址:http://d.download.csdn.net/down/3169511/z_y_liu89
===========================
2. github是一個git項(xiàng)目托管網(wǎng)站
注冊地址:https://github.com/signup/free
3. 安裝git程序,執(zhí)行下面操作
$ cd ~/.ssh //檢查計(jì)算機(jī)ssh密鑰
如果沒有提示:No such file or directory 說明你不是第一次使用git,執(zhí)行下面的操作,清理原有ssh密鑰 |
$ ls
config id_rsa id_rsa.pub known_hosts
$ mkdir key_backup
$ cp id_rsa* key_backup
$ rm id_rsa*
ssh-keygen -t rsa -C "defnngj@gmail.com" //填寫email地址,然后一直“回車”ok
打開本地..\.ssh\id_rsa.pub文件。此文件里面內(nèi)容為剛才生成人密鑰。 |
4 . 登陸github系統(tǒng)。點(diǎn)擊右上角的 <a href= "https://github.com/account" >Account Settings</a>--->SSH Public keys ---> add another public keys |
把你本地生成的密鑰復(fù)制到里面(key文本框中), 點(diǎn)擊 add key 就ok了 |
如果提示:Hi defnngj You've successfully authenticated, but GitHub does not provide shell access. 說明你連接成功了 |
$ git config --global user.name "defnngj" //給自己起個用戶名
$ git config --globla user.email "defnngj@gmail.com" //填寫自己的郵箱
在github中找到 Account Settings--->Account Admin ,找到一下信息: |
Your API token is e 97279836 f 0 d 415 a 3954 c 1193 dba 522 f ---keep it secret! Changing your password will |
$ git config --global github.user defnngj //github 上的用戶名
$ git config --globla github.token e97279836f0d415a3954c1193dba522f
====================創(chuàng)建一個項(xiàng)目======================== |
1 . 回到github首頁,點(diǎn)擊頁面右下角“New Repository” |
project name: hello world |
description : my first project |
點(diǎn)擊“Create Repository” ; 現(xiàn)在完成了一個項(xiàng)目在github上的創(chuàng)建。 |
2 . 我們需要使用git在本地創(chuàng)建一個相同的項(xiàng)目。 |
$ makdir ~/hello-world //創(chuàng)建一個項(xiàng)目hello-world
$ cd ~/hello-world //打開這個項(xiàng)目
$ git init //初始化
$ touch README
$ git add README //更新README文件
$ git commit -m 'first commit' //提交更新,并注釋信息“first commit”
$ git remote add origin git@github.com:defnngj/hello-world.git //連接遠(yuǎn)程github項(xiàng)目
$ git push -u origin master //將本地項(xiàng)目更新到github項(xiàng)目上去
現(xiàn)在查看github上面的hello world 項(xiàng)目,是不是發(fā)現(xiàn)已經(jīng)將本地中的README文件更新上來了。 :) 恭喜! |
----------------------------關(guān)于可能出現(xiàn)的錯誤:------------------------------------------------------------------------------------------- |
$ git remote addorigin git@github.com:defnngj/hello-world.git |
錯誤提示:fatal: remote origin already exists. |
<span style= "color: #000000;" > $ git remote rm origin</span> |
然后在執(zhí)行:$ git remote add origin git@github.com:defnngj/hello-world.git 就不會報(bào)錯誤了 |
錯誤提示:error:failed to push som refs to....... |
$ git pull origin master //先把遠(yuǎn)程服務(wù)器github上面的文件拉先來,再push 上去。 |
-----------------------后記----------------------------------------------------------------------------------------------------------------- |
本來關(guān)于此類知識應(yīng)該屬于開發(fā)的,本人從事測試工作,因?yàn)槔洗蟋F(xiàn)在在推行g(shù)it的使用,所以,就花了時間,初步的學(xué)習(xí)了一下,為了更好的測試嘛。呵呵。 |
第二個原因,看到有個樂師用版本管理系統(tǒng)(SVN)來更新和管理自己的樂譜,這個很有意思。版本管理系統(tǒng)并不局限于代碼的管理。而且版本管理系統(tǒng)的思想也很有意思。 |