从git存储库拉出后我的文件权限被更改的原因


1

我一遍又一遍地遇到这个问题。我在我的远程服务器上设置了一个git存储库,所有文件都设置为644,文件夹设置为755.但是,每次从git存储库中取出后(我使用的是bitbucket),我都注意到了我修改的文件被更改为664,导致内部服务器错误。例如,我更改了index.php,当我试图访问它时它发生了500

我必须使用 find . -type d -print0 | xargs -0 chmod 0755find . -type f -print0 | xargs -0 chmod 0644手动更改我的文件权限恢复正常


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.