Skip to content
Joe Esposito edited this page Apr 30, 2014 · 1 revision

To commit:

$ git add .
$ git commit -m "Fixed the alphabet."

Note that without -m, a text window will open for you to enter a commit message with.

You can also add changes to the index with -a in a single command:

$ git commit -am "Fixed the alphabet."
Clone this wiki locally