Using a single, built-in, command-line command? No.
Using two commands:
git add -A
git commit
Using a custom alias:
Add this to .gitconfig:
[alias]
commituntracked = "!git add -A; git commit"
Then you can do
git commituntracked
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…