Here are my current aliases in .gitconfig, and they work great. However, I'd like to have a single alias that can do all three.
Example of what I'd like at terminal:
git x my_commit_message
Psuedo-code of .gitconfig:
[alias]
x = add -A <then do> commit -m <use variable from command line> push
I have push set to default = current, so push alone works.
[push]
default = current
Any help is appreciated, thanks!