diff --git a/levels/pages/basic-2.md b/levels/pages/basic-2.md index 4c79877..8479ed9 100644 --- a/levels/pages/basic-2.md +++ b/levels/pages/basic-2.md @@ -23,12 +23,12 @@ We can also add and delete directories from `git`, not only files. This level ab Click on hints to reveal them. -{{% expand "Hint 0" %}} +{{% expand "Creating directories?" %}} To create a directory, run `mkdir`. {{% /expand %}} -{{% expand "Hint 1" %}} +{{% expand "Adding directories?" %}} You can add all files in a directory using `git add some/directory/*`, or just `git add some/directory`. -Be careful to not add all files if you don't actually want all of them. +Be careful to not add all files if you don't actually want all of them! {{% /expand %}} diff --git a/levels/pages/log-4.md b/levels/pages/log-4.md index c98358c..65b43e1 100644 --- a/levels/pages/log-4.md +++ b/levels/pages/log-4.md @@ -27,7 +27,7 @@ twitter: You'll have to hop around a little to find the flag. Read the `readme` to start. -rKTUAESacQM +{{< youtube mcCK99wHrk0 >}} ## 🧩 Hints diff --git a/levels/pages/start-here.md b/levels/pages/start-here.md index 0829b49..344b807 100644 --- a/levels/pages/start-here.md +++ b/levels/pages/start-here.md @@ -38,7 +38,7 @@ You passed this stage of the CTF, so ***check out*** the next stage 👀 error: failed to push some refs to 'gamemaster@localhost:~/ctf-repo' ``` -It's on purpose. The important part is that you got the flag 🚩. +It's on purpose. The important part is that you got the flag 🚩 ## 🧩 Hints @@ -60,11 +60,11 @@ Read about [`git commit`](https://www.atlassian.com/git/tutorials/saving-changes In this case, just running `git push` is enough. {{% /expand %}} -{{% expand "What if I f-ed it up" %}} +{{% expand "ლ(¯ロ¯ლ) What if I f-ed it up" %}} Good! That's a good way to learn. You'll need to figure out how to return things to their original state and start over :) {{% /expand %}} -{{% expand "What if I f-ed it up, for real" %}} +{{% expand "ლ(ಠ_ಠ ლ) What if I f-ed it up, for real" %}} First, return to the original commit from which you've started the challenge (`git checkout origin/start-here`). Then, set the local `start-here` branch to the current HEAD (`git branch -f start-here`). Now you can try to solve again.