git worktree add ../VisualBayesicDocs gh-pagesThis will create a new folder calledVisualBayesicDocsin the parent directory of the current repo. This folder will contain thegh-pagesbranch of the repo. This is where the docs will be pushed to.cp -r -force ./docs/build/html/* ../VisualBayesicDocs/This will copy the contents of thedocs/build/htmlfolder to theVisualBayesicDocsfolder.cd ../VisualBayesicDocsThis will change the current directory to theVisualBayesicDocsfolder.git add .This will add all the files in the current directory to the staging area.git commit -m "Update docs"This will commit the changes to thegh-pagesbranch.git push origin gh-pagesThis will push the changes to thegh-pagesbranch of the repo.cd ../VisualBayesicThis will change the current directory back to theVisualBayesicfolder.