Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/publishing/github-pages.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ You usually do not need to do this --- `quarto publish gh-pages` will create the

``` {.bash filename="Terminal"}
git checkout --orphan gh-pages
git reset --hard # make sure all changes are committed before running this!
# make sure all changes are committed before running this!
git reset --hard
git commit --allow-empty -m "Initialising gh-pages branch"
git push origin gh-pages
```
Expand Down
Loading