Git CHMOD 接收后挂钩
我在网络服务器上使用一个裸露的远程存储库,并带有一个接收后挂钩,该挂钩会自动将我的文件推送到 public_html 目录中。
问题是,我使用的是 codeigniter,index.php 文件必须是 chmod 755。我使用 filezilla 在服务器上更改了它,但每次推送后,index.php 文件都会设置为 644,这会导致内部服务器错误。
即使 index.php 没有更改或隐藏,也会发生这种情况。
我已经寻找解决方案,但到目前为止还没有运气。有人可以帮助我吗? 顺便说一下,我正在使用 Tower GIT 客户端来提交/推送。
谢谢
I'm using a bare remote repository on my webserver with a post-receive hook that will automatically push my files in the public_html directory.
The problem is, I'm using codeigniter and the index.php file has to be chmod 755. I changed it on the server with filezilla, but after every push the index.php file gets set to 644, which results in an internal server error.
This happens even when the index.php isn't changed or stashed..
I've searched for a solution, but so far without luck.. Could someone help me with this?
I'm using the Tower GIT client to commit/push by the way.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Git 将可执行位与存储库中的每个文件一起存储。如果它认为文件的模式为 644,那么您可能需要通过在工作副本中设置权限、提交和推送来更改存储库本身的权限:
Git stores an executable bit along with each file in the repository. If it thinks the file has mode 644, then you probably need to change the permissions in the repository itself, by setting them in your working copy, committing, and pushing: