You can stage and commit all changes to tracked files by running the command:
git commit -am "Git Add and Commit Shortcut"
or
git commit -all -m "Git Add and Commit Shortcut"
The above is the shortcut of the following commands:
git add . git commit -m "Your commit message"