Mémo pour ajouter le droit d’exécution à un script sh via git.
1 2 3 4 |
command chmod +x myscript.sh command git add --chmod=+x myscript.sh command git commit -m "Add +x" command git push |
Posté le dans Trucs et astuces du développeur par
Dernière mise à jour :
Mémo pour ajouter le droit d’exécution à un script sh via git.
1 2 3 4 |
command chmod +x myscript.sh command git add --chmod=+x myscript.sh command git commit -m "Add +x" command git push |