Reorder levels and chapters into a better sequence

This commit is contained in:
blinry 2021-01-07 12:57:31 +01:00
parent 5c1f1ce722
commit c99a35d54f
40 changed files with 128 additions and 288 deletions
levels/branches

View file

@ -0,0 +1,35 @@
title = Party Time
cards = checkout commit-auto reset-hard branch
[description]
You were invited to two parties but they will happen at the same time! At party 1 your favorite band is playing and the other one is your best friend's birthday party.
Where should you go? No worries - you are a time travel agent in training. You can go to both parties! To quickly switch between both events, check out the last commits and
create branches with the `git branch [string]` command. Now you can easily switch between both branches by calling `git checkout [branch]`.
[setup]
echo "-Birthday present.
-Concert ticket." > backpack
git add .
git commit -m "evening preparations"
echo "-Birthday present." > backpack
git add .
git commit -m "go to the birthday"
git checkout HEAD~1
echo "-Concert ticket." > backpack
git add .
git commit -m "go to the concert"
git checkout HEAD~1
[win]
NUM_BRANCHES="$(git show-ref --heads | wc -l)"
test "$NUM_BRANCHES" -ge 3
[congrats]
Your friend is happy that you made it to the birthday party and you also got your concert ticket signed. Yay!