Chapter 28. Version Control with Git - III, Branches

Table of Contents
References for this Lesson
Most Recent Lesson's Assignments
Git, Branches
Assignments DE.3
Handing In Assignments
Assignment DE.3.0

References for this Lesson

Git Tutorial Part 3 , and Git Tutorial Part 4

My Git Introduction fra slide 38.

There has been some questions about Git internals. To satisfy your curiosity check out Git Internals - How Git Works - Fear Not The SHA! . This is an example of applying this to our demo:

nmlX240 demo  $ cd .git/objects
nmlX240 objects  $ git cat-file -p c8f7997cdf7f2226f4782949e282ba562b123781
<!doctype html>
<html>
    <head>
        <title>demo</title>
        <meta charset='utf-8'/>
    </head>
    <body>
        <h1>Demo</h1>
        <script src='hw.js'></script>
    </body>
</html>