mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2025-05-01 20:42:01 +02:00
Reorder levels and chapters into a better sequence
This commit is contained in:
parent
5c1f1ce722
commit
c99a35d54f
40 changed files with 128 additions and 288 deletions
levels/sandbox
3
levels/sandbox/empty
Normal file
3
levels/sandbox/empty
Normal file
|
@ -0,0 +1,3 @@
|
|||
title = Empty sandbox
|
||||
|
||||
[setup]
|
25
levels/sandbox/three-commits
Normal file
25
levels/sandbox/three-commits
Normal file
|
@ -0,0 +1,25 @@
|
|||
title = Three commits
|
||||
|
||||
[setup]
|
||||
|
||||
echo "You wake up." > you
|
||||
git add .
|
||||
git commit -m "The beginning"
|
||||
|
||||
echo "You drink coffee." >> you
|
||||
git commit -am "First things first"
|
||||
|
||||
echo "You hear a knock on the door." >> you
|
||||
git commit -am "Who's there?"
|
||||
|
||||
git branch not_main
|
||||
|
||||
[description]
|
||||
|
||||
That's all for now! Here's a sandbox you can play around in.
|
||||
|
||||
Did you see the black terminal at the very bottom? All cards you play translate into actual commands, and there'a a real Git repo behind this! Fun things to try:
|
||||
|
||||
- Make a commit that merges three timelines together at once!
|
||||
- Create some tags!
|
||||
- Make a timeline that's completely independent of the rest!
|
Loading…
Add table
Add a link
Reference in a new issue