I have a question and I do not know how to solve it.
It happens the following, I created a script in sh
called atualiza.sh
inside it I have the following code.
git add .
git commit -m"atualiza rotina"
git push
xxxxxxxxxxx
My goal is to run a routine every day that automatically updates any changes in git and sends it to my versioning server.
Only when the routine executes this sh
file I created nothing happens. Can anyone tell me what the error is?