A quick tip for Git

Git is handy, and the typical workflow is add -> commit -> push. Adding a single file can be done quicker with a combination.


Kalle Tolonen
Oct. 25, 2023


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"

Comments

No published comments yet.

Add a comment

Your comment may be published.