Is there any way to use these three commands in one?
git add . git commit -a -m \"commit\" (do not need commit message either) git push
Som
Write a small script named gitpush.sh with below lines and add it your ~ directory.
echo $1 git add . git commit -m "$1" git push
Now add an alias in ~/.bashrc like below :
alias gitpush='~/gitpush'
Now from any git repository just write gitpush "message" .