Stage `git status` output in one go.
Here is a nice little command to stage multiple modified files in a Git project in one go. git add $(git status -s | cut -c 4-) The -s flag tells the status sub-command to output the results in short-format giving us a letter or "??" to indicate the file status followed…