From 52cc7c5095522eafb5389e09694764a3117e32ce Mon Sep 17 00:00:00 2001
From: Mark McFadden <m2web@yahoo.com>
Date: Sat, 31 Jul 2021 09:28:48 -0400
Subject: [PATCH] Remove log branch

It appears that there is no way, at least what I could find, to capture
the CLI output. No doubt there is a way, but I do not want to take the
time to figure it out.
---
 levels/log/list     | 27 ---------------------------
 levels/log/sequence |  1 -
 levels/sequence     |  1 -
 3 files changed, 29 deletions(-)
 delete mode 100644 levels/log/list
 delete mode 100644 levels/log/sequence

diff --git a/levels/log/list b/levels/log/list
deleted file mode 100644
index bcc8700..0000000
--- a/levels/log/list
+++ /dev/null
@@ -1,27 +0,0 @@
-title = List Log History
-
-[description]
-
-List the commits made in that repository in reverse chronological order; that is, the most recent commits show up first. 
-
-[setup]
-
-rm -rf .git
-
-git init
-
-for i in 1 2 3 4
-do
-  echo "M$i" > M$i.txt
-  git add M$i.txt
-  git commit -m "M$i"
-done
-
-[win]
-
-#List the log
-#test "$(git log | wc -l )" -ge 1
-
-[congrats]
-
-Well done! It is good to be able to view the repo's history and see what has been commited by you and others.
diff --git a/levels/log/sequence b/levels/log/sequence
deleted file mode 100644
index b92b8b7..0000000
--- a/levels/log/sequence
+++ /dev/null
@@ -1 +0,0 @@
-list
diff --git a/levels/sequence b/levels/sequence
index 966fdc1..cefcd7a 100644
--- a/levels/sequence
+++ b/levels/sequence
@@ -3,7 +3,6 @@ files
 branches
 merge
 index
-log
 remotes
 changing-the-past
 shit-happens