gpt4 book ai didi

git - 如何使 git checkout 文件权限模式为 777?

转载 作者:行者123 更新时间:2023-12-05 02:18:38 27 4
gpt4 key购买 nike

我用root运行git,每次checkout的时候文件权限模式都变成了root 644,也就是说apache无法删除,修改.
然后我决定让 GIT 以权限 777 check out 文件。我知道设置 umask 000(默认为 022)可以做到这一点,但我不想更改我的 centos 设置。
怎么做?

最佳答案

Git 2.9 or more, you can do

git add --chmod=+x -- afile
git commit -m "Executable!"

然后,在下一次克隆或 checkout 时,该文件将是可执行的。

旁注:适当的 umask would be 022 (for 755) or 002 for 775 .一般不推荐 777。

注释 777(即使使用 git update-index)也没有意义,因为 Git itself does not record write: only 644 or 755, spelled 100644 and 100755, with the 100 part meaning "regular file" .

关于git - 如何使 git checkout 文件权限模式为 777?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44615992/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com