View on GitHub

The Least You Need to Know About GitHub Pages

The least you need to know about GitHub Pages is laser-focused on one thing: showing how to get a working informational website up and running as fast as possible using GitHub Pages, using only the GitHub website.

Creating a GitHub repository for your project

The GitHub repository, also known as a repo, stores your project and its entire history. Git allows you to go back to any commit point and reconstruct your project up to that point. On GitHub it also has many other features, such as an effective bug/feature reporting system called Issues, a built-in Wiki, and easy ways for other people to check out their own versions of your (public) repository and create their own versions, then offer them back to you if they wish.

The Create a new repository page appears.

Creating a new repository

On some configurations you may see the Start a project button, so click it if so.

Creating a new repository

The Public option makes your repository visible to the entire Internet. You can leave it unchecked and keep your repo private, but GitHub Pages by definition publishes the contents of the site (at least when links are supplied to those pages).

Screenshot showing Add a README file unchecked

You’ll get a page that looks like this:

Screenshot showing a new repo without README.md checked

Previous page Next page

Home