git 學(xué)習(xí)手冊(一).doc_第1頁
git 學(xué)習(xí)手冊(一).doc_第2頁
git 學(xué)習(xí)手冊(一).doc_第3頁
git 學(xué)習(xí)手冊(一).doc_第4頁
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

git 學(xué)習(xí)手冊(一)Git web實(shí)作:1. 安裝Apachsudo apt-get install apache22. 安裝Gitwebsudo apt-get install gitwebgitweb.cgi 腳本安裝在/usr/lib/cgi-bin/ 中,該目錄為默認(rèn)ubuntu 上apache2 的cgi-bin 目錄。所以,打開:/cgi-bin/gitweb.cgi 即可顯示成功運(yùn)行,只是我們還未將git項(xiàng)目加入其中。3. 修改配置文件:sudo vi /etc/gitweb.conf將其中的$projectroot 改為存放各個(gè).git 的目錄 只是純view git的內(nèi)容而已安裝GIT for windows要在windows上安裝Git,目前並沒有太多選擇。我是安裝msysgit,網(wǎng)路上找都有安裝說明,你在安裝上應(yīng)該不會(huì)有太多困難。記得勾bash(命令列)和gui,bash就是命令列操作模式,gui是圖形操作介面,但個(gè)人感覺git gui不太好用,如果真的不想用命令列,不如安裝TortoiseGit(著名的烏龜系列),它的ui相比之下好用很多。目前也只是純View git log,用samba連進(jìn)linuxGit command 指令Git設(shè)定 git init 在這個(gè)目錄init git1. git config -global Tsung2. git config -global user.email 3. git config -global color.diff auto # git diff 要顯示顏色4. git config -global color.status auto # git status 要顯示顏色5. git config -global color.branch auto6. git config -global color.log auto # git log -graph 會(huì)很漂亮, 感謝日落提供.7. git config -global core.editor vim # 設(shè)定vim為git-config的editor8. git config -global -e # 用editor開啟/.gitconfig檔,不加-global的話就會(huì)開啟$GIT_DIR/config Git 自動(dòng)忽略檔案 / 目錄設(shè)定要自動(dòng)將某些檔案掠過不 Commit, 要設(shè)定 .gitignore 這個(gè)檔案. (哪些檔案是不要 commit 進(jìn)去的) vim .gitignoretmp/*/*log/*config/database.yml 使用 git add . 等, 這些都不會(huì)將這些資料列入 commit. (.gitignore 會(huì)被列入 commit) Git 新增檔案 git add . # 將資料先暫存到 staging area, add 之後再新增的資料, 於此次 commit 不會(huì)含在裡面. git add filename git add modify-file # 修改過的檔案, 也要 add. (不然 commit 要加上 -a 的參數(shù)) git add -u # 只加修改過的檔案, 新增的檔案不加入. git add -i # 進(jìn)入互動(dòng)模式Git 刪除檔案 git rm filenameGit 修改檔名、搬移目錄 git mv filename new-filenameGit status 看目前的狀態(tài) git status # 看目前檔案的狀態(tài)Git Commit git commit git commit -m commit message git commit -a -m commit -message # 將所有修改過得檔案都 commit, 但是 新增的檔案 還是得要先 add. git commit -a -v # -v 可以看到檔案哪些內(nèi)容有被更改, -a 把所有修改的檔案都 commitGit 產(chǎn)生新的 branch git branch # 列出目前有多少 branch git branch new-branch # 產(chǎn)生新的 branch (名稱: new-branch), 若沒有特別指定, 會(huì)由目前所在的 branch / master 直接複製一份. git branch new-branch master # 由 master 產(chǎn)生新的 branch(new-branch) git branch new-branch v1 # 由 tag(v1) 產(chǎn)生新的 branch(new-branch) git branch -d new-branch # 刪除 new-branch git branch -D new-branch # 強(qiáng)制刪除 new-branch git checkout -b new-branch test # 產(chǎn)生新的 branch, 並同時(shí)切換過去 new-branch # 與 remote repository 有關(guān) git branch -r # 列出所有 Repository branch git branch -a # 列出所有 branchGit checkout 切換 branch git checkout branch-name # 切換到 branch-name git checkout master # 切換到 master git checkout -b new-branch master # 從 master 建立新的 new-branch, 並同時(shí)切換過去 new-branch git checkout -b newbranch # 由現(xiàn)在的環(huán)境為基礎(chǔ), 建立新的 branch git checkout -b newbranch origin # 於 origin 的基礎(chǔ), 建立新的 branch git checkout filename # 還原檔案到 Repository 狀態(tài) git checkout HEAD . # 將所有檔案都 checkout 出來(最後一次 commit 的版本), 注意, 若有修改的檔案都會(huì)被還原到上一版. (git checkout -f 亦可) git checkout xxxx .

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論