From c123d2e97ded7691ca1556dd28ee96ab118c11ae Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Thu, 1 Apr 2021 03:40:47 +0100 Subject: [PATCH] Draft for git checkout --- index.html | 117 ++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 90 insertions(+), 27 deletions(-) diff --git a/index.html b/index.html index 37c6463..bdb021c 100644 --- a/index.html +++ b/index.html @@ -406,6 +406,10 @@ function mkdir(dirname) { return filesystem[dirname] = null; } +function exists(filename) { + return typeof(filesystem[filename]) !== 'undefined'; +} + current_directory = ''; function cd(d) { current_directory = d; @@ -687,15 +691,27 @@ initial_commit = store_commit(

Branches

+

A branch is a pointer to a commit, stored in a file in .git/refs/heads/name_of_the_branch. + The branch can be overwritten with git branch -f. Also, as will be explained later, + git commit can update the pointer of a branch.

@@ -706,7 +722,7 @@ branch_force('main', initial_commit);

- -
-

git commit

If the HEAD points to a commit hash, then git commit updates the HEAD to point to the new commit. Otherwise, when the HEAD points to a branch, then the target branch (represented by a file named .git/refs/heads/the_branch_name) is updated.

- + +
+ +

Tags

+

Tags are like branches, but are stored in .git/refs/tags/the_tag_name + and a tag is not normally modified. Once created, it's supposed to always point + to the same version.

+

GIT does offer a git tag -f existing-tag new-hash command, + but using it should be a rare occurrence.

+
+

More importantly, the HEAD does not normally point to a tag. Although nothing actually + prevents writing ref: refs/tags/v1.0 into .git/HEAD, the GIT + commands will not automatically do this. For example, git checkout tag-or-branch-or-hash + will put a symbolic ref: in .git/HEAD only if the argument is a branch.

+ +

git init

+ + +
+

git init