Posts by Virutal Disco • 19 points
1 post
-
1
votes0
answers38
viewsQ: Problems with crontab and Git push script
I created a scrip . sh to update my repository in Git Hub. Manually the scrip runs perfectly. #!/bin/bash cd /home/user/tmp/ git init git add . git commit -m "`date +'%Y_%m_%d'`" git push --force…