Git is handy, and the typical workflow is add -> commit -> push. Adding a single file can be done quicker with a combination.
git commit . -m "my commit"
This will add & commit with one command. You can also use normal cli-tricks. For example, if you'd like to add only Python files, you could use:
git commit *.py -m "My msg"
Your comment may be published.
Name:
Email:
Message: