git commit all

Shell
git commit -a -m "Change titles and styling on homepage"#Add all files which have been modified (including tracked and untracked)
git add -A
#Commit changes with a message
git commit -m "some message"

Source

Also in Shell: