From b841471613d35ef3983aba518d5aae81fba60926 Mon Sep 17 00:00:00 2001 From: jackyzha0 <j.zhao2k19@gmail.com> Date: Mon, 19 Jul 2021 02:18:26 +0000 Subject: [PATCH] add pushing changes docs --- content/notes/hosting.md | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/content/notes/hosting.md b/content/notes/hosting.md index 00e9aef..3186567 100644 --- a/content/notes/hosting.md +++ b/content/notes/hosting.md @@ -9,7 +9,19 @@ By default, Github Actions will run on forks of repos. You should not need to do any more config to see it up to date. ### Pushing Changes -[TODO] +Quartz is essentially a `git` repository so updating it is the same workflow as you would follow as normal. + +```shell +# Navigate to Quartz folder +cd <path-to-quartz> + +# Commit all changes +git add . +git commit -m "message describing changes" + +# Push to GitHub to update site +git push origin hugo +``` ### Custom subdomain Have a fancy custom domain or want to subdomain your Quartz? That's easy too. -- Gitblit v1.10.0