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 >
You can also combine the frequent commands in one line:
$ git add . | git commit -m 'Some message' | git push | cap deploy
Next time you just need the Up arrow to get it back, then push Enter