root用户下,使用git pull文件时候,文件权限强制自动变更

Posted Technofiend

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了root用户下,使用git pull文件时候,文件权限强制自动变更相关的知识,希望对你有一定的参考价值。

在 .git/hooks/ 目录下
新建一个名为 post-checkout 的文件

将下列内容保存

#!/bin/sh
pwd
echo "This is post-checkout hook"
chmod -R 755 ./* && chown -R www:www ./*

使post-checkout可以被调用
chmod +x post-checkout

以上是关于root用户下,使用git pull文件时候,文件权限强制自动变更的主要内容,如果未能解决你的问题,请参考以下文章

如何防止root运行git pull?

在VSCode中使用Git处理文件冲突(pull不能从服务器拉取代码)

CentOS下git push/pull无需输入密码

git可以add,pull, 不可以push的问题解决

git pull时 忽略文件

防止git pull更改文件权限和所有权