By running the following command after replacing your username:
git clone https://github.com/YOUR_USERNAME/TryHackMe
sed -i 's/☑/☐/g' README.md
This command will replace '☑' with '☐' in the README.md
file.
Mark completed rooms with '☑' in the README.md
file.
You can use emojis inside the Status
column, for example:
- '⏳' for rooms in progress
- '🔴' for rooms stopped (depends on other tasks, depends on knowledge from other rooms)
By using the following commands:
git add .
git commit -m "Your commit message"
git push origin main
# Stash your changes if you have any
git stash
# Add the upstream repo
git remote add upstream https://github.com/migueltc13/TryHackMe
# Pull the changes from the upstream repo
git pull upstream main
# Recover your stashed files if you have any
git stash pop