Ein Script muss als executable markiert werden. Mit Git geht das über das --chmod
-Flag:
git update-index --chmod=+x script.sh
git add --chmod=+x script.sh
git commit -m "Added executable flag to script.sh"
git push
Ein Staubkorn an Wissen
Ein Script muss als executable markiert werden. Mit Git geht das über das --chmod
-Flag:
git update-index --chmod=+x script.sh
git add --chmod=+x script.sh
git commit -m "Added executable flag to script.sh"
git push