我使用 Apache 提供文件的“分离工作树”将更新推送到 repo。使用接收后挂钩脚本,我需要一个已更改文件的列表,以便按照我们的 suphp 的要求更新它们的权限。但是,它不起作用。有什么想法为什么不呢?
GIT_WORK_TREE=/srv/www/live/ files=`git diff ..FETCH_HEAD --name-only --diff-filter=ACMRTUXB`
GIT_WORK_TREE=/srv/www/live/ sudo -u www-run /usr/bin/git checkout -f
for file in $files
do
if [[ $file == *.php ]]
then
chmod 600 $file
else
chmod 644 $file
fi
done
.git/config 的内容
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
sharedrepository = 1
worktree = /srv/www/live/
[receive]
denyNonFastforwards = true
denycurrentbranch = ignore