Next Join my army of git zombies! 7

Let's make a commit

First we create a new repository

      git init demo        # The repository is named "demo"

Then we'll edit some files in the working tree

     echo "I like pie!" > pie

Then we tell Git to start tracking these files in the repository

     git add pie

Then we create the commit:

     git commit

Next Copyright © 2011 M. J. Dominus