2020-11-20から1日間の記事一覧

Gitでファイルパーミッションの変更を無視する

サーバーでpullしたところ、ファイルパーミッションが777でなかったので、 chmod 777 reminder.shしたところ、git statusに表示されてた。 これで良いらしい。 $ git config -l | grep filemode core.filemode=true $ git config core.filemode false blog.t…