Committing
Committing Your Changes
To commit your changes and add a message through a text editor run
$ git commit
To commit your changes while adding a message to the command line
$ git commit -m "_MESSAGE_"
To do staging and committing at the same time, run
$ git commit -a -m "_MESSAGE_"