I use git (like most people) for my projects in VS Code. However, I find it a hassle to first add the files, then commit them. So what I want to do is create a terminal command (maybe like commit "message"). What this command should do is run the following: git add . then git commit -m plus the message they wrote in the command. From what I've seen, this shouldn't be too much of a hassle.
Thanks in advance!
git commit -am. It's equivalent togit add -u . && git commit -m.git commit -m.