Process Flow - git commit -a to skip staging
Modify files in working directory
Run 'git commit -a -m "msg"'
Git auto stages all tracked modified files
Git creates commit with staged changes
Commit saved, working directory clean
This flow shows how 'git commit -a' automatically stages tracked modified files and commits them in one step.