git-commit-all
$ npm install -g https://github.com/slammayjammay/git-commit-all
Usage
$ git-commit-all "Commit message" # Easy peasy.
Just a shortcut for
$ git add -A
$ git commit -m "Commit message"
And since git-commit-all
takes so long to type...
# In your .bash_profile
alias gall="git-commit-all"
$ gall "Commit everything!"