June 2016
Beginner
456 pages
9h 31m
English
Now that we have the Git binaries installed, let's take a step forward and create our first local Git repository.
Make sure that you have installed Git.
We will take a common path by starting a new pet project, where we will simply create a new local directory, add some files to it, and then realize, Ohh I am gonna need a version control system:
$ mkdir mynewproject $ touch mynewproject /index.html $ touch mynewproject /main.js $ touch mynewproject/main.css
Now you need to create a Git repository for this project. Sure, Git covered you with the git init command.
Read now
Unlock full access