From 92ef4bb690eaa74b8e4b143717360e6d4451709a Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Fri, 2 Apr 2021 22:16:27 +0100 Subject: [PATCH] Fixed CSS, fixed typos --- git-tutorial.css | 8 ++-- git-tutorial.js | 2 +- index.html | 115 ++++++++++++++++++++++++++--------------------- 3 files changed, 68 insertions(+), 57 deletions(-) diff --git a/git-tutorial.css b/git-tutorial.css index f7cee2e..d486b19 100644 --- a/git-tutorial.css +++ b/git-tutorial.css @@ -12,14 +12,14 @@ article#git-tutorial { max-width: 63rem; position: absolute; right:18.4em; top:0 @media (max-width: 72em) { #git-tutorial td.cell-contents { width: 34em; } - #git-tutorial article { right: 7em; } + article#git-tutorial { right: 7em; } #git-tutorial #toc { right: -11em; } #git-tutorial #toc:hover { border-left: 5px solid gray; } } @media (max-width: 63em) { #git-tutorial td.cell-contents { width: 30em; } - #git-tutorial article { right:6em; } + article#git-tutorial { right:6em; } #git-tutorial #toc { right: -12em; } #git-tutorial #toc:hover { border-left: 5px solid gray; } } @@ -27,7 +27,7 @@ article#git-tutorial { max-width: 63rem; position: absolute; right:18.4em; top:0 #git-tutorial textarea { display:block; height: 18rem; } #git-tutorial .CodeMirror { height: max-content; } #git-tutorial input { display: inline-block; margin-right: 1em; font-size: 1.2rem; } -#git-tutorial table, #git-tutorial td { border:thin solid black; border-collapse: collapse; } +#git-tutorial table, #git-tutorial td, #git-tutorial th { border:thin solid black; border-collapse: collapse; } #git-tutorial .specialchar { color: red; word-wrap: normal; } #git-tutorial .hex-prefix { color: lightgrey; } #git-tutorial .hex { color: brown; } @@ -43,7 +43,7 @@ article#git-tutorial { max-width: 63rem; position: absolute; right:18.4em; top:0 #git-tutorial .error { color: orangered; } #git-tutorial .newline:after { content: ''; display:inline-block; width:100%; height:0; } #git-tutorial code { word-wrap: break-word; } -#git-tutorial article .onlytoc { display: none; } +article#git-tutorial .onlytoc { display: none; } /* #toc .onlytoc { } */ #git-tutorial #toc .tocsmall { font-size: smaller; } #git-tutorial #toc .notoc { display: none; } diff --git a/git-tutorial.js b/git-tutorial.js index 5a0ad6e..dd53f28 100644 --- a/git-tutorial.js +++ b/git-tutorial.js @@ -361,7 +361,7 @@ function ___filesystem_to_string(fs) { + '' - + "" + entries.join('') + "
"; + + "" + entries.join('') + "
PathContents
"; } function ___textarea_value(elem) { if (elem.getValue) { diff --git a/index.html b/index.html index d9066d1..183158e 100644 --- a/index.html +++ b/index.html @@ -65,7 +65,7 @@ function read(filename) { } function write(filename, data) { - return filesystem[filename] = ""+data; + filesystem[filename] = String(data); } function exists(filename) { @@ -73,11 +73,11 @@ function exists(filename) { } function mkdir(dirname) { - return filesystem[dirname] = null; + filesystem[dirname] = null; } -function cd(d) { - current_directory = d; +function cd(dirname) { + current_directory = dirname; } @@ -105,8 +105,8 @@ function listdir(dirname) {

Our imaginary user will create a proj directory, and start filling in some files.

+ +
+

git symbolic-ref

+ +
+ +
+

git rev-parse

+ +
+ +

git branch

A branch is a pointer to a commit, stored in a file in .git/refs/heads/name_of_the_branch. @@ -456,48 +509,6 @@ function advance_head(new_commit_hash) { } - - - @@ -804,8 +815,8 @@ current_directory = '';