Chapter 30. Version Control with Git - III, Branches

Table of Contents
30.1. References for this Lesson
30.2. Most Recent Lesson's Assignments
30.3. Git, Branches
30.4. Assignments DE.3
30.4.1. Assignment DE.3.0

30.1. 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>