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
You can use bash script , set alias to launch any command or group of commands
git commit -am "your message" && git push