1
0
mirror of synced 2026-01-09 06:03:09 -05:00

Merge branch 'main' into main

This commit is contained in:
Laura Coursen
2022-01-20 15:00:25 -06:00
committed by GitHub

View File

@@ -68,7 +68,9 @@ Before you can use Jekyll to create a {% data variables.product.prodname_pages %
If you chose to publish your site from the `gh-pages` branch, create and checkout the `gh-pages` branch.
```shell
$ git checkout --orphan gh-pages
# Creates a new branch, with no history or contents, called gh-pages and switches to the gh-pages branch
# Creates a new branch, with no history or contents, called gh-pages, and switches to the gh-pages branch
$ git rm -rf
# Removes the contents from your default branch from the working directory
```
1. To create a new Jekyll site, use the `jekyll new` command:
```shell