From e8c67f3c51bd340ee95f2239371a75f3c7996f75 Mon Sep 17 00:00:00 2001
From: Suzanne Soy
Date: Thu, 24 Jun 2021 00:03:30 +0100
Subject: [PATCH] Line breaks in the code
---
git-tutorial.css | 2 +-
index.html | 62 ++++++++++++++++++++++++++++++++----------------
2 files changed, 43 insertions(+), 21 deletions(-)
diff --git a/git-tutorial.css b/git-tutorial.css
index 141b2f4..c5aa041 100644
--- a/git-tutorial.css
+++ b/git-tutorial.css
@@ -144,4 +144,4 @@ article#git-tutorial .onlytoc { display: none; }
#git-tutorial .exercise-reason { border: thin solid #80c5c5; background: #f8fdff; padding: 1em }
#git-tutorial .exercise-reason:before { content: "Rationale "; margin-bottom: 0.7em; font-weight: bold; display: block; }
#git-tutorial .log-alert { color: red; font-weight: 500; }
-#git-tutorial button { margin-top: 0.3em; }
\ No newline at end of file
+#git-tutorial input[type='button'] { display: inline-block; margin-top: 0.2em; }
\ No newline at end of file
diff --git a/index.html b/index.html
index 036f09c..9502dbc 100644
--- a/index.html
+++ b/index.html
@@ -126,11 +126,13 @@ function listdir(dirname) {
var paths = Object.keys(filesystem);
// Filter to keep only the paths starting with the given dirname
var prefix = dirname + '/';
- var descendents = paths
- .filter(function (filename) { return filename.startsWith(prefix) && (filename.length > prefix.length); });
+ var descendents = paths.filter(function (filename) {
+ return filename.startsWith(prefix) && (filename.length > prefix.length);
+ });
// Keep only the next path component
- var children = descendents
- .map(function (filename) { return filename.split('/')[depth]; });
+ var children = descendents.map(function (filename) {
+ return filename.split('/')[depth];
+ });
// remove duplicates, listdir('a') with paths a/b/c and a/b/d and a/x
// should only return ['b', 'x'], not 'b', 'b', x.
return Array.from(new Set(children));
@@ -243,7 +245,11 @@ the git hash-object
command which can be called on a real git comma
The store_tree()
function needs to be called for the contents of subdirectories
first, and that result can be used to store the trees of upper directories. In the next section,
@@ -503,7 +510,8 @@ function store_commit(tree, parents, author, committer, message) {
+ format_date(committer.date) + ' '
+ format_timezone(committer.timezoneMinutes) + '\n';
commit_contents += '\n';
- commit_contents += '' + message + (message[message.length-1] == '\n' ? '' : '\n');
+ commit_contents += '' + message;
+ if (message[message.length-1] != '\n') { commit_contents += '\n'; }
// cat commit_contents | git hash-object -w -t commit --stdin
return hash_object(true, 'commit', true, commit_contents);
}
@@ -529,11 +537,18 @@ function format_timezone(tm) {
The first commit has no parent, which is represented by passing
the empty list.
@@ -691,6 +706,9 @@ and returns the hash. The difference with git symbolic-ref
is that
to other references, and returns the last named reference in the chain of indirections, whereas rev-parse
goes one step further and returns the hash pointed to by the last named reference.