com
Stage all changes (including new files, modifications, and deletions) and open the commit message editor. This is a quick way to commit all your work from the command line without having to run separate git add and git commit commands.
Usage:
git com "commit message here"
CLI Command
git config --global alias.com "!git add -A && git commit -m"
.gitconfig Snippet
[alias]
com = !git add -A && git commit -m