So I am trying to change the Powershell Scripts as executable and commit them as such with an updated index. Is there a way I can do this?
I know in bash it's fairly easy:
sudo chmod +x some_file.sh
git update-index --chmod=+x some_file.sh
git add -A
git commit -a
git push
Any thoughts on how I can do this for Powershell Scripts within Windows Machines?