Created
October 13, 2015 19:08
-
-
Save koturn/1fc09349e2c6b12c8af1 to your computer and use it in GitHub Desktop.
Windows(Cygwin)でgitを用いるときに、WIndows側が作るファイルのデフォルトのパーミッションが気になるので、それを修正するアレ
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 | |
| find . -type d -name '.git' -prune -o -type f -exec chmod 644 {} \; | |
| find . -type d -name '.git' -prune -o -type d -exec chmod 755 {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment