Basic Commands - Intro to Git part 2
Installing Git You can find Git in basically every package manager in existence. If you don’t use a package manager, you can get git from the official downloads page. This tutorial uses git version 2.x.x. Check which version you have by running 1 $ git --version Creating a repository To create a git repository in the current directory, use the init subcommand: 1 $ git init This command will create the ....