Fixed issues when cloning the repo to build; updated clone instructions

This commit is contained in:
BlueFox 2025-04-09 19:08:05 +02:00
parent 7879812f1a
commit 6d04d6c9e8
Signed by: BlueFox
GPG Key ID: 327233DA85435270
2 changed files with 11 additions and 2 deletions

View File

@ -8,7 +8,16 @@ To clone and make some changes, you need to clone the repository. This one also
```sh ```sh
git clone --recurse-submodules https://git.privacynerd.de/git.privacynerd.de/blog.privacynerd.de blog git clone --recurse-submodules https://git.privacynerd.de/git.privacynerd.de/blog.privacynerd.de blog
cd blog cd blog/themes/terminal-fork
git branch -r \
| grep -v '\->' \
| sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \
| while read remote; do \
git branch --track "${remote#origin/}" "$remote"; \
done
git fetch --all
git pull --all
cd ../../
``` ```
## Running & Building ## Running & Building

@ -1 +1 @@
Subproject commit 14c8acafc82ea4b2f54f97ebab9b11d8216be916 Subproject commit 60581143f9c1b8d4a3109e7ae0c9cf21078033a4