動作環境
- git bash
Windowsローカルではchmodがないのでgit update-indexでファイルに実行権限を付与する
git update-index --add --chmod=+x path/to/file
ディレクトリ一括で付与したい
findを使う
find path/to/directory -type f -exec git update-index --add --chmod=+x {} \;
Go to list of users who liked
More than 5 years have passed since last update.
動作環境
Windowsローカルではchmodがないのでgit update-indexでファイルに実行権限を付与する
git update-index --add --chmod=+x path/to/file
ディレクトリ一括で付与したい
findを使う
find path/to/directory -type f -exec git update-index --add --chmod=+x {} \;
Register as a new user and use Qiita more conveniently
Go to list of users who liked