Windows上でGit管理ファイルの実行権限を操作する

Windows上でgitを利用して管理しているファイルに実行権限をつけたい場合、以下のコマンドを実行すれば良い。

git update-index --add --chmod=+x [filename]

また、実行権限を外したい場合は以下のコマンドを実行すれば良い。

git update-index --add --chmod=-x [filename]

参考(https://qiita.com/satotka/items/29f1483f8921d2ecfeab)