Created
January 22, 2020 07:39
-
-
Save RyujiAMANO/48b0d6d2ea074463b17f676a6e6cea3e to your computer and use it in GitHub Desktop.
NetCommons3/app/Plugin下の各リポジトリでgit config core.filemode falseする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# cd NetCommons3/app/ | |
# bash gitCoreFileModeFalse.sh で実行 | |
# | |
dir_path="Plugin/*" | |
dirs=`find $dir_path -type d -maxdepth 0` | |
for dir in $dirs; | |
do | |
echo $dir | |
cd $dir | |
git config core.filemode false | |
cd ../../ | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment