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 did this .sh script for command
#!/bin/sh cd LOCALDIRECTORYNAME/ git config --global user.email "YOURMAILADDRESS" git config --global user.name "YOURUSERNAME" git init git status git add -A && git commit -m "MASSAGEFORCOMMITS" git push origin master