Using Git Aliases can make you feel like you have superpowers!
Press enter or click to view image in full size
It wasn’t until recently that I discovered Git Aliases, they are so handy that I seriously don’t know how I lived without them. These are two that I use every day now.
Git Add Commit Push
git config — global alias.add-commit-push '!git add -A && git commit -m "$1" && git push && git status'
Once the alias has been added you can now add, commit and push all on one line.
git add-commit-push "Add, commit, push in one line!"