This commit is contained in:
WickedJack99
2022-09-20 19:45:08 +02:00
parent 9fa426493b
commit c6642a2127
7 changed files with 65 additions and 74 deletions

View File

@@ -16,9 +16,31 @@
</nav>
<h1>How to create a static website with Jekyll and deploy it on GitHubPages</h1>
<p>20 Sep 2022 - jill</p>
<p>20 Sep 2022 - Aaron</p>
<p>Create a GitHub Account.</p>
<p>Create a GitHub-account: https://github.com/</p>
<p>Create a repository on GitHub: https://github.com/
(It has to be public if you use GitHub Free, note that your code will be visible to everyone!)</p>
<p>Clone the repository to a local directory:</p>
<p>SSH</p>
<blockquote>
<p>$ git clone recursive $SSH_URL</p>
</blockquote>
<p>HTTPS</p>
<blockquote>
<p>$ git -c http.sslVerify=false clone recursive $HTTPS_URL</p>
</blockquote>
<p>Create two directories: docs and localDev.</p>
<blockquote>
<p>$ mkdir docs</p>
<p>$ mkdir localDev</p>
</blockquote>
<p>Follow instructions on: https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll</p>