Yet another introduction to Git - from the bottom up

Wen-Tien Chang
Wen-Tien Chang😆 👨🏻‍💻 📚 🚀 💰
Yet another introduction to
from the bottom up
http://ihower.tw
2013/8/3@COSCUP
我是誰
• 張⽂文鈿 a.k.a. ihower
• http://ihower.tw
• CTO, Faria Systems
• http://faria.co
• Organizer of RubyConf Taiwan
• http://rubyconf.tw
• Git user since 2008
如何不⽤用 git add 和 git commit
指令進⾏行 commit 動作?
⼩小測驗
如何不⽤用 git add 和 git commit
指令進⾏行 commit 動作?
⼩小測驗
(⽤用GUI操作不算,謝謝!)
我的版本控制之路
• 2002 ⺫⽬目錄管理法 (定時 copy 備份⼀一次)
• 2005 SubVersion
• 2007 SVK
• 2008 Git (像 SVN ⼀一樣只會 push/pull)
• 2009 Git (開始習慣 feature branches)
• 2011 Git (開始習慣使⽤用 rebase)
Agenda
• 為什麼需要「版本控制系統」?
• Git 是如何做「版本控制系統」的?
• 結論
1. 為什麼需要
版本控制系統
Version Control System
軟體開發的基本⼯工具
• 版本控制系統不祇可以幫助妳追蹤修訂
⼿手上的⼯工作進度,讓妳在千鈞⼀一髮之際
還能拾回過往⾟辛苦的結晶,甚⾄至能夠讓
妳跟其他⼈人協同⼯工作、合作無間。
http://jedi.org/blog/archives/004784.html
• 那些台灣軟體產業所缺少的 – 版本控制
系統
http://blog.ez2learn.com/2011/10/20/taiwan-software-lacking-of-vcs/
2. Git 是如何做
版本控制系統的?
⽤用 Graph 概念理解
檔案A⺫⽬目錄 檔案B
working area
檔案內容A
檔案內容B
git add .
(將⺫⽬目錄節點和檔案內容節點關聯起來)
⺫⽬目錄
檔案內容A
V1
檔案內容B
V1
git commit
(產⽣生commit節點,指向⺫⽬目錄節點)
⺫⽬目
錄
V1
Commit
V1
檔案內容B
V1
git commit (cont.)
(產⽣生commitV2節點,指向parent commit節點)
⺫⽬目
錄
V1
Commit
V1
檔案內容A
V2
⺫⽬目
錄
V2
Commit
V2
檔案內容A
V1
檔案內容B不變
Git is objects database
Blob
object
Blob
object
Tree
object
Commit
object
儲存內容(demo)
• echo hello > hello.txt
• git add .
• tree .git
• 存在 .git/objects/ce/
013625030ba8dba906f756967f9e9ca394464a
• 這是 hello 內容的 SHA1
• printf "blob 6000hellon" | shasum
• echo "hello" | git hash-object --stdin
• git cat-file -p ce013625030ba8dba906f756967f9e9ca394464a
blob object 的實際檔案名稱
.git/objects/ce/013625030ba8dba906f756967f9e9ca394464a
hello
blob
ce0136
Blob object
• Git 是 Content-addressable filesystem
• Blob 沒有 metadata,沒有檔名資訊
• Blob object 的儲存檔名,是根據內容產⽣生的
SHA1
• 內容⼀一樣的檔案,根據 SHA1 演算法只會存
成同⼀一份檔案,不會浪費空間
儲存⺫⽬目錄(demo)
• git write-tree
(根據 staging area 產⽣生 Tree object)
• git cat-file -p
aaa96ced2d9a1c8e72c56b253a0e2fe78393feb7
Tree object 的實際檔案名稱
.git/objects/aa/a96ced2d9a1c8e72c56b253a0e2fe78393feb7
100644 blob ce0136 hello.txt
Tree
hello
blob
ce0136aaa96c
儲存⺫⽬目錄 (cont.)
• 再新增⼀一個檔案和⼦子⺫⽬目錄
• touch hola.txt & mkdir coscup & touch coscup/bonjour.txt
• git add .
• git write-tree
• git cat-file -p
117a5b49c6de3adc2a1834dc5907189bf84f3d7a
• git cat-file -p
122f77b55b5753c456b22d96a0b63103ced46334
040000 tree 122f77 coscup
100644 blob ce0136 hello.txt
100644 blob e69de2 hola.txt
Tree
hello
blob
ce0136
117a5
blob
e69de2
100644 blob e69de2 bonjour.txt
Tree
122f77
040000 tree 122f77 coscup
100644 blob ce0136 hello.txt
100644 blob e69de2 hola.txt
Tree
hello
blob
ce0136
117a5
blob
e69de2
100644 blob e69de2 bonjour.txt
Tree
122f77
Tree object
• Git ⽤用 Tree object 把 Blob object 組織起來,包
括檔案命名和⺫⽬目錄結構
• Blob object 並沒有包含檔案名稱和⺫⽬目錄結構
• Tree object 裡⾯面還可以有 Tree object ⼦子⺫⽬目錄
• Tree object 的檔名,⼀一樣是根據內容產⽣生
SHA1
遞交 Commit (demo)
• git commit-tree
117a5b49c6de3adc2a1834dc5907189bf84f3d7a -m
“First commit”
• git cat-file -p 058d2d
• cat .git/HEAD
• git update-ref refs/heads/master 058d2d
• git rev-parse HEAD
Commit object
指向 root tree SHA1
040000 tree 122f77 coscup
100644 blob ce0136 hello.txt
100644 blob e69de2 hola.txt
Tree
117a5
tree 117a5b
author ihower 1375381139 +0800
committer ihower1375381139 +0800
First commit
0e2757commit
master
HEAD
再次遞交 Commit (demo)
• 修改 hola.txt 檔案
• git commit -am “Second commit”
• git cat-file -p 24eac58
Commit object
也指向 parent commit SHA1
040000 tree 122f77 coscup
100644 blob ce0136 hello.txt
100644 blob e69de2 hola.txt
Tree
117a5
tree 117a5b
author ihower 1375381139 +0800
committer ihower1375381139 +0800
First commit
058d2dcommit
040000 tree 122f77 coscup
100644 blob ce0136 hello.txt
100644 blob 38a5fc hola.txt
Tree
5f398a
tree 5f398a5
parent 058d2
author ihower 1375381779 +0800
committer ihower 1375381779 +0800
Second commit
24eac58commit
Commit object
• 紀錄 root tree SHA1
• 紀錄 parent commit SHA1
• 紀錄作者、時間和 commit message 資訊
• Commit object 的檔名,⼀一樣是根據內容產⽣生
SHA1
Git commit 動作流程
• ⽤用內容產⽣生 blob object
• 寫⼊入 file mode, blob SHA1, file name 到 staging area
• 根據 staging area 產⽣生 Tree object
• ⽤用 root tree SHA1 和 parent commit SHA1 產⽣生
commit object
• ⽤用 commit SHA1 更新 master 參考
如何不⽤用 git add 和 git commit
指令進⾏行 commit 動作?
echo "hola" | git hash-object -w --stdin
git update-index --add --cacheinfo 
100644 5c1b14949828006ed75a3e8858957f86a2f7e2eb hola.txt
git write-tree
git commit-tree 27b9d5 -m "Second commit" -p 30b060
git update-ref refs/heads/master 97b806c9e5561a08e0df1f1a60857baad3a1f02e
git add
git commit
https://gist.github.com/ihower/6132576
測驗解答
Tag object
(Tag 分兩種:annotated tag 才會產⽣生 object)
• git tag -a release
• git rev-parse release
• git cat-file -p 2450f3
caa307commitobject 24eac5
type commit
tag release
tagger ihower 1375383070 +0800
Release!
2450f3tag
⼩小結論:
Git 有四種 Objects
• Blob
• Tree
• Commit
• Tag
References 參照
• 單純⼀一個檔案紀錄⼀一個 SHA1參照
• Tag reference
• Branch reference
• HEAD reference (指向⺫⽬目前所在的 branch)
Tag reference
• git tag tmp
• cat .git/refs/tags/tmp
• 不像 object 資訊豐富,reference 內容只
有 Commit object SHA1
24eac5commit24eac5
refs/tags/tmp
Branch 和 HEAD
reference
• 每次 commit 就會變動 reference
• HEAD 指向⺫⽬目前在哪⼀一個 branch
• cat .git/HEAD
• cat .git/refs/heads/master
24eac5commit24eac5
refs/heads/master
ref: refs/heads/
master
HEAD
如果在 Branch 上產⽣生新
Commit...
24eac5commit24eac5
refs/heads/master
ref: refs/heads/
develop
HEAD
55cbccommit
Branch reference 就會⾃自動
改指到新的 commit
24eac5commit
55cbcb
refs/heads/master
ref: refs/heads/
master
HEAD
55cbcbcommit
開新 Branch develop
git branch develop
55cbcbcommit55cbcb
refs/heads/master
55cbcb
refs/heads/develop
ref: refs/heads/
master
HEAD
切換 Branch:改HEAD
git checkout develop
55cbcbcommit55cbcb
refs/heads/master
55cbcb
refs/heads/develop
ref: refs/heads/
develop
HEAD
commit
caa307
refs/heads/master
caa307
refs/heads/develop
commit
commit commit
40b603da103e
合併 Branch
git merge develop
commit
caa307
refs/heads/master
caa307
refs/heads/develop
commit
commit commit
tree 5f398a5
parent 40b603
parent da103e
author ihower 1375381779 +0800
committer ihower 1375381779 +0800
Merge branch ‘develop’ into master
commit
40b603da103e
產⽣生的 merge
commit 節點
有兩個 parents
commitcaa307
refs/heads/master
caa307
refs/heads/develop
commit
commit
另⼀一種合併情況 fast-forward
將 develop 合併進 master
commit
caa307
refs/heads/master
caa307
refs/heads/develop
commit
commit
另⼀一種合併情況 fast-forward
沒有產⽣生 merge 節點,只是移動參考
Git 如何 Merge
commits?
• Git 進⾏行了⼀一個 Three-way merge 的動作
• three-way merge 除了要合併的兩個檔
案,還加上兩個檔案的共同祖先。如此
可以⼤大⼤大減少⼈人為處理 conflict 的情況。
• two-way merge 則只⽤用兩個檔案進⾏行合併
(svn預設即 two-way merge)
1
2
1
2
3
4
A B
Two-way merge
1
2
1
2
3
4
A B
Two-way merge
1
2
1
2
3
4
A B
Two-way merge
1
2
1
2
3
4
A B
1
2
?
Two-way merge
1
2
1
2
3
4
A B
1
2
?
Conflict!
需要⼈人⼯工判斷
Two-way merge
1
2
1
2
3
4
A B
1
2
1
2
3
4
A B
Three-way merge:
先找出 AB 共同的祖先
1
2
1
2
3
4
A B
1
2
3
Three-way merge:
先找出 AB 共同的祖先
1
2
1
2
3
4
A B
1
2
3
Three-way merge:
先找出 AB 共同的祖先
1
2
1
2
3
4
A B
1
2
3
Three-way merge:
先找出 AB 共同的祖先
1
2
1
2
3
4
A B
1
2
3
Three-way merge:
先找出 AB 共同的祖先
-3
1
2
1
2
3
4
A B
1
2
3
Three-way merge:
先找出 AB 共同的祖先
-3 +4
1
2
1
2
3
4
A B
1
2
3
Three-way merge:
先找出 AB 共同的祖先
-3 +4
1
2
1
2
3
4
A B
1
2
3
Three-way merge:
先找出 AB 共同的祖先
-3 +4
1
2
1
2
3
4
A B
1
2
4
1
2
3
Three-way merge:
先找出 AB 共同的祖先
-3 +4
1
2
1
2
3
4
A B
1
2
4
⾃自動合併出
正確結果
1
2
3
Three-way merge:
先找出 AB 共同的祖先
-3 +4
Conclusion
additive
• 跟 Unix filesystem 有類似的結構,除了
• Git filesystem 的設計是⼀一直累加的,不會
有東⻄西被刪除
• Blob object 沒有 metadata
Reference is cheap
• 開新 branch 只是 refs ⽽而已,直到 commit
前都沒有負擔。
• 不像有些VCS 開分⽀支會複製⼀一份原始
碼,⾮非常耗費資源。
Integrity
• SHA1 是內容的 checksum
• 如果檔案內容有損毀,就會發現跟SHA1不
同。如果 tree 被偷改檔名,也會被發現。
• HEAD 指向的 SHA1,就是整個 repository
的 checksum
• 這在分散式系統⾮非常重要:資料從⼀一個開
發者傳到另⼀一個開發者時,確保資料沒有
被修改。
Distributed
• Local development
• 集中式的VCS 系統,沒網路就不能開發,無法
commit,無法看 history log。
• 分散式 CSV 系統即使沒網路,照常可以 commit
和看 history log。
• 不⽤用擔⼼心備份,每個⼈人都有⼀一份完整的
• 開源專案:誰有權限 commit? 沒關係,你可以 fork
• ⽀支援多種⼯工作流程 Workflow
"I will, in fact, claim that the difference between a bad
programmer and a good one is whether he considers
his code or his data structures more important. Bad
programmers worry about the code. Good
programmers worry about data structures and their
relationships."
- Linus Torvalds
參考資料
• http://ihower.tw/blog/category/git
• http://pragprog.com/screencasts/v-jwsceasy/source-control-made-easy
• http://www.youtube.com/watch?v=4XpnKHJAok8 Linux 的演講
• http://www.softdevtube.com/2013/02/05/advanced-git/
• http://git-scm.com/book
• Git from the bottom up
http://ftp.newartisans.com/pub/git.from.bottom.up.pdf
• Version Control with Git, O'Reilly
• http://nfarina.com/post/9868516270/git-is-simpler
• http://think-like-a-git.net/sections/graph-theory.html
謝謝,請多指教
http://ihower.tw
1 of 71

More Related Content

What's hot

Introduction to gitIntroduction to git
Introduction to gitBo-Yi Wu
19.5K views57 slides
Git flow 與團隊合作Git flow 與團隊合作
Git flow 與團隊合作Bo-Yi Wu
11.2K views52 slides
Git 經驗分享Git 經驗分享
Git 經驗分享Mu Chun Wang
3.9K views246 slides
Git & Sourcetree 介紹Git & Sourcetree 介紹
Git & Sourcetree 介紹Adison wu
2.6K views21 slides

What's hot(20)

Introduction to gitIntroduction to git
Introduction to git
Bo-Yi Wu19.5K views
Git flow 與團隊合作Git flow 與團隊合作
Git flow 與團隊合作
Bo-Yi Wu11.2K views
初心者 Git 上手攻略初心者 Git 上手攻略
初心者 Git 上手攻略
Lucien Lee23.2K views
Git 經驗分享Git 經驗分享
Git 經驗分享
Mu Chun Wang3.9K views
Git由超淺入超深Git由超淺入超深
Git由超淺入超深
羊 小咩 (lamb-mei)5.7K views
Git & Sourcetree 介紹Git & Sourcetree 介紹
Git & Sourcetree 介紹
Adison wu2.6K views
連哈秋都懂的Git教學連哈秋都懂的Git教學
連哈秋都懂的Git教學
hydai1.5K views
工程師必備第一工具 - Git工程師必備第一工具 - Git
工程師必備第一工具 - Git
Alan Tsai82.9K views
Git 版本控制 (使用教學)Git 版本控制 (使用教學)
Git 版本控制 (使用教學)
Jui An Huang (黃瑞安)4.9K views
幸福快樂的完美結局幸福快樂的完美結局
幸福快樂的完美結局
Anna Su1.4K views
Git and git hubGit and git hub
Git and git hub
唯 李2.8K views
寫給大家的 Git 教學寫給大家的 Git 教學
寫給大家的 Git 教學
littlebtc212.3K views
Git 入門與實作Git 入門與實作
Git 入門與實作
奕浦 郭1.9K views
GitlabGitlab
Gitlab
Tom Chen1K views
Visual Studio Code 快速上手指南Visual Studio Code 快速上手指南
Visual Studio Code 快速上手指南
Shengyou Fan56.7K views
ALPHAhackathon: How to collaborateALPHAhackathon: How to collaborate
ALPHAhackathon: How to collaborate
Wen-Tien Chang2.5K views

Viewers also liked(18)

那些 Functional Programming 教我的事那些 Functional Programming 教我的事
那些 Functional Programming 教我的事
Wen-Tien Chang27.6K views
Ruby 程式語言綜覽簡介Ruby 程式語言綜覽簡介
Ruby 程式語言綜覽簡介
Wen-Tien Chang9.5K views
Ruby 1.9Ruby 1.9
Ruby 1.9
Wen-Tien Chang23.3K views
RubyConf Taiwan 2011 Opening & ClosingRubyConf Taiwan 2011 Opening & Closing
RubyConf Taiwan 2011 Opening & Closing
Wen-Tien Chang1.9K views
RubyConf Taiwan 2012 Opening & ClosingRubyConf Taiwan 2012 Opening & Closing
RubyConf Taiwan 2012 Opening & Closing
Wen-Tien Chang14.2K views
RSpec 讓你愛上寫測試RSpec 讓你愛上寫測試
RSpec 讓你愛上寫測試
Wen-Tien Chang30.2K views
RSpec on Rails TutorialRSpec on Rails Tutorial
RSpec on Rails Tutorial
Wen-Tien Chang4.9K views
RSpec & TDD TutorialRSpec & TDD Tutorial
RSpec & TDD Tutorial
Wen-Tien Chang3K views
BDD style Unit TestingBDD style Unit Testing
BDD style Unit Testing
Wen-Tien Chang9.6K views
Git and GithubGit and Github
Git and Github
Wen-Tien Chang15.7K views

Similar to Yet another introduction to Git - from the bottom up

Git 教學Git 教學
Git 教學Ming-Sian Lin
1K views59 slides
Git basis - usageGit basis - usage
Git basis - usageEason Cao
576 views82 slides
Learn gitLearn git
Learn git甘 李
1.1K views36 slides
Git & git flowGit & git flow
Git & git flowAmo Wu
1.3K views219 slides

Similar to Yet another introduction to Git - from the bottom up(20)

Git 教學Git 教學
Git 教學
Ming-Sian Lin1K views
Git basis - usageGit basis - usage
Git basis - usage
Eason Cao576 views
Learn gitLearn git
Learn git
甘 李1.1K views
Git & git flowGit & git flow
Git & git flow
Amo Wu1.3K views
Git introductionGit introduction
Git introduction
mythnc243 views
Git原理与实战 201607Git原理与实战 201607
Git原理与实战 201607
Charles Tang147 views
Git 使用介绍Git 使用介绍
Git 使用介绍
medcl1.1K views
Git flowGit flow
Git flow
shaokun1.3K views
Git 入门实战Git 入门实战
Git 入门实战
icy leaf2.6K views
Git教學Git教學
Git教學
Sitg Yao603 views
Git+使用教程Git+使用教程
Git+使用教程
gemron391 views
ExecutionExecution
Execution
Angel Boy25.6K views
Git TutorialGit Tutorial
Git Tutorial
Drake Huang866 views
Git & git hub v1.2Git & git hub v1.2
Git & git hub v1.2
Chris Chen305 views
Git内部培训文档Git内部培训文档
Git内部培训文档
superwen1.3K views

More from Wen-Tien Chang(11)

⼤語⾔模型 LLM 應⽤開發入⾨⼤語⾔模型 LLM 應⽤開發入⾨
⼤語⾔模型 LLM 應⽤開發入⾨
Wen-Tien Chang5.4K views
Ruby Rails 老司機帶飛Ruby Rails 老司機帶飛
Ruby Rails 老司機帶飛
Wen-Tien Chang2.1K views
A brief introduction to Machine LearningA brief introduction to Machine Learning
A brief introduction to Machine Learning
Wen-Tien Chang10.9K views
Rails3 changesetsRails3 changesets
Rails3 changesets
Wen-Tien Chang1.3K views
遇見 Ruby on Rails遇見 Ruby on Rails
遇見 Ruby on Rails
Wen-Tien Chang5.7K views
Designing Ruby APIsDesigning Ruby APIs
Designing Ruby APIs
Wen-Tien Chang10.4K views
Rails SecurityRails Security
Rails Security
Wen-Tien Chang8K views
Rails PerformanceRails Performance
Rails Performance
Wen-Tien Chang9K views
Distributed Ruby and RailsDistributed Ruby and Rails
Distributed Ruby and Rails
Wen-Tien Chang10.7K views
Ruby 入門 第一次就上手Ruby 入門 第一次就上手
Ruby 入門 第一次就上手
Wen-Tien Chang3.5K views

Yet another introduction to Git - from the bottom up