July 2018
Intermediate to advanced
354 pages
10h 57m
English
To start this exercise, we will not be cloning a repository, but creating one. To do this, we will be using git init, as shown in the following code. You can use git init <directory> to create a new repository somewhere, or you can go to a directory and execute git init and Git will create a repository for you.
$ git init chapter7 Initialized empty Git repository in /Users/JohnDoe/repos/chapter7/.git/ $ cd chapter7
Read now
Unlock full access