Polish some levels in the first chapters, and the branch-delete icon

This commit is contained in:
blinry 2021-02-19 11:40:36 +01:00
parent f7351316bc
commit 2250b9b473
6 changed files with 18 additions and 48 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View file

@ -5,9 +5,7 @@ cards = checkout commit-auto
The yellow boxes are frozen points in time, we call them "commits"! You can travel between them using the "checkout" card! (Try it!)
The grey panel below shows your current environment - click on an object to inspect or modify it!
Can you find out what happened here? Then, while on the latest commit, edit the files to fix the problem, and make a new commit!
Can you find out what happened here? Then, while on the last commit, edit the files to fix the problem, and make a new commit!
[cli]

View file

@ -22,8 +22,6 @@ test -d .git
[congrats]
Cool! When you don't use the cards in a level, you'll get a golden sparkling "command line badge"! See it in the top left?
Cool! Instead of using the playing cards, you can also do everything via the command line!
The command line is pretty powerful! Often, you can use it to solve tasks faster compared to using a graphical interface.
It's also totally optional in this game. But if you want to learn how to use Git from the command line, we invite you to this challenge! :)

View file

@ -3,9 +3,7 @@ cards = commit-auto
[description]
You can use your time machine to make snapshots of objects around you!
Here, let's practice this!
You can use your time machine to make snapshots of objects around you! Here, let's practice this!
(Your teacher pours some water into a glass.)

View file

@ -22,6 +22,8 @@ git add .
git commit -m "Initial version"
git push -u teacher main
git update-ref -d refs/remotes/teacher/main
[setup teacher]
git reset --hard main

View file

@ -41,8 +41,8 @@
},
{
"id": "commit-auto",
"command": "git add .; git commit -m \"New commit\"",
"description": "Make a new commit containing your current environment!"
"command": "git add .; git commit",
"description": "Make a new commit containing your current environment! Type in a description of what changed!"
},
{
"id": "merge",