六、給文件重命名的簡便方法html
使用: git move 命令能夠給暫存區中的文件重命名git
$ git mv first.txt first.md $ git status On branch master Changes to be committed: (use "git reset HEAD <file>..." to unstage) renamed: first.txt -> first.md $ git commit -m"move first.txt to first.md" [master 5d63d93] move first.txt to first.md 1 file changed, 0 insertions(+), 0 deletions(-) rename first.txt => first.md (100%)
七、經過git log 查看版本演變歷史shell
$ git log --oneline --graph #圖形化方式,簡潔顯示日誌 * 7376bc5 (HEAD -> temp) Update fourth file * 1d63ec8 Add fouth file * b843c28 Add third file * 0bd98cb Add second file * c8588e4 Add first file $ git log --oneline --graph --all #顯示全部分支日誌 * 5d63d93 (master) move first.txt to first.md * 7376bc5 (HEAD -> temp) Update fourth file * 1d63ec8 Add fouth file * b843c28 Add third file * 0bd98cb Add second file * c8588e4 Add first file $ git log --oneline --graph --all -n3 #指定顯示日誌數量 * 5d63d93 (master) move first.txt to first.md * 7376bc5 (HEAD -> temp) Update fourth file * 1d63ec8 Add fouth file
八、.gitk:經過圖形界面工具來查看版本歷史
gitk 是 git 提供的一個gui工具,能夠很清晰地查看搜索提交歷史及 git 相關操做。在終端 git 倉庫目錄下輸入 gitk 命令便可使用。
less
詳細實用可參考鏈接:Use gitk to understand gitide
九、.git目錄中各文件的含義工具
$ ls .git/ -l total 14 -rw-r--r-- 1 nxf42573 1049089 27 Mar 15 17:46 COMMIT_EDITMSG -rw-r--r-- 1 nxf42573 1049089 130 Mar 14 16:34 config -rw-r--r-- 1 nxf42573 1049089 73 Mar 14 16:34 description -rw-r--r-- 1 nxf42573 1049089 298 Mar 15 17:55 gitk.cache -rw-r--r-- 1 nxf42573 1049089 21 Mar 15 17:50 HEAD drwxr-xr-x 1 nxf42573 1049089 0 Mar 14 16:34 hooks/ -rw-r--r-- 1 nxf42573 1049089 369 Mar 15 17:50 index drwxr-xr-x 1 nxf42573 1049089 0 Mar 14 16:34 info/ drwxr-xr-x 1 nxf42573 1049089 0 Mar 14 16:36 logs/ drwxr-xr-x 1 nxf42573 1049089 0 Mar 15 17:46 objects/ drwxr-xr-x 1 nxf42573 1049089 0 Mar 14 16:34 refs/
.git 文件的結構 The .git Directory
ui
文件 | 類型 | 內容 | 做用 |
---|---|---|---|
config | 文本文件 | 見上圖 | 本地git存儲庫的配置文件 |
HEAD | 文件夾 | ref: refs/heads/master | 當前分支,即 git branch 命令顯示的分支 |
refs/heads | 文件夾 | - | 本地庫全部的分支 |
refs/heads/master | 文本文件 | 6975b… | master 分支最近一次 commit 的 SHA1 值 |
refs/heads/v1 | 文本文件 | fd70… | v1 分支最近一次 commit 的 SHA1 值 |
refs/remotes | 文件夾 | - | refs/remotes目錄下的全部內容都是對遠程跟蹤分支的提交的引用。 |
refs/remotes/origin | 文件夾 | - | 遠程存儲庫源的遠程跟蹤分支存儲在這個目錄中。 |
COMMIT_EDITMSG | 文本文件 | 「some commit description」 | 最後一次 commit 的註釋 |
hooks | 文件夾 | - | 這個目錄存放一些shell腳本,能夠設置特定的git命令後觸發相應的腳本 |
info | 文件夾 | - | 包含git倉庫的一些信息 |
logs | 文件夾 | - | 保存全部更改的引用記錄,繼續打開logs文件夾,有refs文件夾和HEAD文件 |
十、commit、tree和blob三個對象之間的關係
git中文版
每一個對象(object) 包括三個部分:類型,大小和內容。大小就是指內容的大小,內容取決於對象的類型,有四種類型的對象:"blob"、"tree"、 "commit" 和"tag"。
「blob」用來存儲文件數據,一般是一個文件。
「tree」有點像一個目錄,它管理一些「tree」或是 「blob」(就像文件和子目錄)
一個「commit」只指向一個"tree",它用來標記項目某一個特定時間點的狀態。它包括一些關於時間點的元數據,如時間戳、最近一次提交的做者、指向上次提交(commits)的指針等等。
Blob對象
一個blob一般用來存儲文件的內容,"blob對象"就是一塊二進制數據,它沒有指向任何東西或有任何其它屬性,甚至連文件名都沒有.由於blob對象內容所有都是數據,如兩個文件在一個目錄樹(或是一個版本倉庫)中有一樣的數據內容,那麼它們將會共享同一個blob對象。Blob對象和其所對應的文件所在路徑、文件名是否改被更改都徹底沒有關係。
this
$ git show 6ff87c4664 Note that the only valid version of the GPL as far as this project is concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x or whatever), unless explicitly otherwise stated. ...
Tree 對象
一個tree對象有一串指向blob對象或是其它tree對象的指針,它通常用來表示內容之間的目錄層次關係。一個tree對象能夠指向(reference): 一個包含文件內容的blob對象, 也能夠是其它包含某個子目錄內容的其它tree對象。 Tree對象、blob對象和其它全部的對象同樣,都用其內容的SHA1哈希值來命名的;只有當兩個tree對象的內容徹底相同(包括其所指向全部子對象)時,它的名字纔會同樣,反之亦然。這樣就能讓Git僅僅經過比較兩個相關的tree對象的名字是否相同,來快速的判斷其內容是否不一樣。3d
$ git ls-tree fb3a8bdd0ce 100644 blob 63c918c667fa005ff12ad89437f2fdc80926e21c .gitignore 100644 blob 5529b198e8d14decbe4ad99db3f7fb632de0439d .mailmap 100644 blob 6ff87c4664981e4397625791c8ea3bbb5f2279a3 COPYING 040000 tree 2fb783e477100ce076f6bf57e4a6f026013dc745 Documentation 100755 blob 3c0032cec592a765692234f1cba47dfdcc3a9200 GIT-VERSION-GEN 100644 blob 289b046a443c0647624607d471289b2c7dcd470b INSTALL 100644 blob 4eb463797adc693dc168b926b6932ff53f17d0b1 Makefile 100644 blob 548142c327a6790ff8821d67c2ee1eff7a656b52 README ...
Commit對象
"commit對象"指向一個"tree對象", 而且帶有相關的描述信息。
指針
$ git show -s --pretty=raw 0bd98cb5d0d969cfc35 commit 0bd98cb5d0d969cfc35d8c5a16d33b5924cbc6b0 tree c1cf819308e03d9a2236f8ab2d0c7f5c6587d32f parent c8588e43dd1053684632871fb8aec1945ee6a6ab author Jone <764651475@qq.com> 1552553965 +0800 committer Jone <764651475@qq.com> 1552553965 +0800 Add second file
一個 tree對象: tree對象的SHA1簽名, 表明着目錄在某一時間點的內容. 父對象 (parent(s)): 提交(commit)的SHA1簽名表明着當前提交前一步的項目歷史. 上面的那個例子就只有一個父對象; 合併的提交(merge commits)可能會有不僅一個父對象. 若是一個提交沒有父對象, 那麼咱們就叫它「根提交"(root commit), 它就表明着項目最初的一個版本(revision). 每一個項目必須有至少有一個「根提交"(root commit). 一個項目可能有多個"根提交「,雖然這並不常見(這不是好的作法). 做者 : 作了這次修改的人的名字, 還有修改日期. 提交者(committer): 實際建立提交(commit)的人的名字, 同時也帶有提交日期. TA可能會和做者不是同一我的; 例如做者寫一個補丁(patch)並把它用郵件發給提交者, 由他來建立提交(commit). 註釋 用來描述這次提交.