How To Create A New Repository On GitHub

Overview

A repository is defined as a place, building, or receptacle where things are or may be stored. On GitHub they serve as self-contained hubs for various types of projects, including software, themes and portfolios. GitHub repositories allow for effective collaboration and communication on and between different teams and projects, as well as tracking the history of changes and allowing for the creation of separate “branches” to allow for work on an item without interfering with the main project or build.

Task

The task outlined in this document is the creation of a new repository on GitHub.

Requirements

The only requirement for creating a repository is a GitHub account, which can be created for free.

Steps

  1. Once you have created your account, click on the + button in the upper right corner of the screen and select “New repository.”

image

  1. Enter the repository name and description (if desired). You may also select a template.
  2. Choose whether this repository will be “public” or “private.”
  3. Tick the box next to “Add a README file.”
  4. If desired, add a .gitignore and/or choose a license.
  5. Click “Create repository.”

image

Results

Once completing the above steps you will be redirected to the “main” branch of your new repository, where you can start working on your project.