Getting Started

Getting A Git Repository

To start controlling a directory with Git there are two ways:

  1. You can take a local directory that is currently not under version control, and turn it into a Git repository
$ git init
  1. You can clone an existing Git repository from elsewhere.
$ git clone https://repository.com

To specify the new directory name as an additional argument

$ git clone https://repo.com _NEW_NAME_