Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 17, 2022 06:17 pm GMT

Host your website on GitHub Pages

Did you know that you can host a website on GitHub, for free ?

No ? Then let me show you.

You need to create a repository that has the following name :

yourUsername.github.io
for me this would be lachouri.github.io, and make it public.

Then, simply to test it, I am going to create an index.html file with a bit of code and I will push it on github.

Simple bit of code

  • Then initialize the repo with git init
  • Create a commit with git add. and git commit -m "First commit"
  • Create the main branch with git branch -M main
  • Link your local repo to the git repository with git remote add origin https://github.com/yourUsername/yourRepo
  • Finally push with git push -u origin main

Wait for a minute or so, and go to the following url: https://yourUsername.github.io and your website appears.

Website

Originally posted on my blog. Check out my instagram account to learn more about web development.


Original Link: https://dev.to/lachouri/host-your-website-on-github-pages-gie

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To