Hi Dalton! You will have to git commit
and git push
everytime you want to update your site with your new notes. At least it adds a check before you put something on the web.
If you want to make it easy, you can create a small script to automate running the three commands (I know not the easiest thing if you are not a programmer).
In essence, just create a bash file (if you are on Windows) or a shell file (Mac and Linux) with these three lines:
git add .
git commit -m "new build for the website"
git push origin
keep this in your public directory and run it once you want to push the notes.