1. git版本控制系統(tǒng)
相比CVS\SVN優(yōu)勢:
-支持離線開發(fā)渔肩,離線Repository
-強大的分支功能,適合多個獨立開發(fā)者協(xié)作
-速度塊
ps:關(guān)于git的更詳細的介紹于優(yōu)點在此就不介紹了饵较,教大家怎么用是關(guā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項目托管網(wǎng)站
注冊地址:https://github.com/signup/free
3.安裝git程序,執(zhí)行下面操作
$ cd ~/.ssh//檢查計算機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"http://填寫email地址隘蝎,然后一直“回車”ok
打開本地..\.ssh\id_rsa.pub文件晒哄。此文件里面內(nèi)容為剛才生成人密鑰睁宰。
4.登陸github系統(tǒng)。點擊右上角的Account Settings--->SSH Public keys ---> add anotherpublic keys
把你本地生成的密鑰復制到里面(key文本框中)寝凌,點擊add key就ok了
5.接著打開git柒傻,測試連接是否成功
$ ssh -T git@github.com
如果提示:Hi defnngj You've successfully authenticated,
but GitHub does not provide shell access.說明你連接成功了
6.設置用戶信息:
6.1
$ git config --globaluser.name"defnngj"http://給自己起個用戶名$ git config --global user.email"defnngj@gmail.com"http://填寫自己的郵箱
6.2
在github中找到Account Settings--->Account Admin ,找到一下信息:
Your API
token is e97279836f0d415a3954c1193dba522f ---keep it secret! Changing your
password will
generate a
new token
$ git config --globalgithub.user defnngj//github上的用戶名$ git config --global github.token e97279836f0d415a3954c1193dba522f
====================創(chuàng)建一個項目========================
1.回到github首頁,點擊頁面右下角“New
Repository”
填寫項目信息:
project
name: hello world
description
: my first project
點擊“Create Repository”较木;現(xiàn)在完成了一個項目在github上的創(chuàng)建红符。
2.我們需要使用git在本地創(chuàng)建一個相同的項目。
$ makdir ~/hello-world//創(chuàng)建一個項目hello-world$ cd ~/hello-world//打開這個項目$ 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//連接遠程github項目$ git push -u origin master//將本地項目更新到github項目上去
現(xiàn)在查看github上面的hello world項目预侯,是不是發(fā)現(xiàn)已經(jīng)將本地中的README文件更新上來了。:)恭喜峰锁!
------------------------------------關(guān)于可能出現(xiàn)的錯誤----------------------------------
1.在執(zhí)行
$ git remote
addorigin git@github.com:defnngj/hello-world.git
錯誤提示:fatal: remote origin already exists.