Starting a new Project

Getting and Creating New Projects

There are two options when creating new projects through Git.

Creating a new local repository

You can create a completely new local repository with the command git init.

Cloning a repository from GitHub

If the repository you want locally is already a remote repository on GitHub, you can simply clone it to create a local copy with the following command:

git clone ssh://git@github.com/[username]/[repository-name].git