Github Pages#
Set up a Home page#
1. Create a Repository#
Head over to GitHub and create a new public repository named username.github.io, where username is your username (or organization name) on GitHub.
If the first part of the repository doesn’t exactly match your username, it won’t work, so make sure to get it right.
2. Clone the Repository onto your computer#
git clone https://github.com/username/username.github.io
3. Create an index.html file#
cd username.github.ioecho "<h1>This is my website</h1>" > index.htmlgit add index.htmlgit commit -m "First commit"git push origin main
Set up Project Pages#
Future lecture.