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
I use a batch file:
@ECHO OFF SET /p comment=Comment: git add * git commit -a -m "%comment%" git push