Is it possible to skip the staging area and (also) commit untracked, new files to git in a single built-in, command-line command ? If not,
Using the command below skips the staging area and commits directly from the working directory.
git commit -a
Note that you still need to add new untracked files.