I do the following string of commands for git and my fingers are getting tired of typing them. :)
git add . git commit -m \'Some message\' git push cap deploy >
I just use semicolons to combined into one command line:
git add .; git commit -m "Some message"; git push; cap deploy