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
25.10.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 is held for review before it appears publicly.