Transcript
00:00 Git init is how you create git repositories. Provide an optional path, my git notes, to initialize that repository in a new directory. cd into the new git repository and run ls to see that it is in fact empty.
00:16 Now run ls with the a option to see that there's one hidden directory. Let's take a look inside of that ls again for that .git directory. This .git hidden directory with these nested folders and files is what makes this boring
00:32 system directory into a git repository. For additional git init options type git help init.