git init This makes a new git repository. Basically, it creates a space for you to put your code. git add . This tells git that it’s going to process all the files in your current folder. git commit -am “Add all files” This is a message that ...
↧