tree
- If you haven’t got tree, get it!
- On Mac (using Homebrew):
- On Debian (using APT):
sudo apt-get install tree
- cd (assuming in root directory):
cd study/docs/resources/maths/pracpapers
- Run tree – is the output…?
- charset == UTF-8
- filename == index.html
- filetype == HTML
- JSON and XML will not work with Netlify/Apache/WEBrick for obvious reasons lol, so ensure filetype != JSON OR XML
tree -H '.' -L 1 --noreport --charset utf-8 > index.html
- Push it to the Git repo (this section assumes you are still in
~/docs/resources/maths/pracpapers
): git add *
git commit -m "Your commit message here"
git push origin master