Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions levels/pages/basic-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}}
2 changes: 1 addition & 1 deletion levels/pages/log-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions levels/pages/start-here.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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.
Expand Down