3 回答
TA贡献1824条经验 获得超8个赞
将git-cache-meta在SO问题中提到“ 混帐-如何恢复文件权限的Git认为文件应 ”(和git的FAQ)是更staightforward方法。
这个想法是在.git_cache_meta文件中存储文件和目录的权限。
它是一个单独的文件,没有在Git仓库中直接版本化。
这就是为什么它的用法是:
$ git bundle create mybundle.bdl master; git-cache-meta --store
$ scp mybundle.bdl .git_cache_meta machine2:
#then on machine2:
$ git init; git pull mybundle.bdl master; git-cache-meta --apply
那么你:
捆绑您的仓库并保存相关的文件权限。
将这两个文件复制到远程服务器上
恢复那里的仓库,并申请权限
TA贡献1815条经验 获得超6个赞
Git是为软件开发而创建的版本控制系统,因此从整个模式和权限集中它只存储可执行位(对于普通文件)和符号链接位。如果要存储完整权限,则需要第三方工具,如git-cache-meta(由VonC提及)或Metastore(由etckeeper使用)。或者您可以使用IsiSetup,IIRC使用git作为后端。
请参阅Git Wiki上的界面,前端和工具页面。
TA贡献1853条经验 获得超6个赞
这已经很晚了,但可能对其他人有所帮助。我通过向我的存储库添加两个git钩子来做你想做的事情。
的.git /钩/预提交:
#!/bin/bash
#
# A hook script called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if it wants
# to stop the commit.
SELF_DIR=`git rev-parse --show-toplevel`
DATABASE=$SELF_DIR/.permissions
# Clear the permissions database file
> $DATABASE
echo -n "Backing-up permissions..."
IFS_OLD=$IFS; IFS=$'\n'
for FILE in `git ls-files --full-name`
do
# Save the permissions of all the files in the index
echo $FILE";"`stat -c "%a;%U;%G" $FILE` >> $DATABASE
done
for DIRECTORY in `git ls-files --full-name | xargs -n 1 dirname | uniq`
do
# Save the permissions of all the directories in the index
echo $DIRECTORY";"`stat -c "%a;%U;%G" $DIRECTORY` >> $DATABASE
done
IFS=$IFS_OLD
# Add the permissions database file to the index
git add $DATABASE -f
echo "OK"
git的/钩/结账后:
#!/bin/bash
SELF_DIR=`git rev-parse --show-toplevel`
DATABASE=$SELF_DIR/.permissions
echo -n "Restoring permissions..."
IFS_OLD=$IFS; IFS=$'\n'
while read -r LINE || [[ -n "$LINE" ]];
do
ITEM=`echo $LINE | cut -d ";" -f 1`
PERMISSIONS=`echo $LINE | cut -d ";" -f 2`
USER=`echo $LINE | cut -d ";" -f 3`
GROUP=`echo $LINE | cut -d ";" -f 4`
# Set the file/directory permissions
chmod $PERMISSIONS $ITEM
# Set the file/directory owner and groups
chown $USER:$GROUP $ITEM
done < $DATABASE
IFS=$IFS_OLD
echo "OK"
exit 0
第一个钩子在您“提交”时被调用,并将读取存储库中所有文件的所有权和权限,并将它们存储在名为.permissions的存储库根目录中的文件中,然后将.permissions文件添加到提交中。
当您“结帐”时将调用第二个挂钩,并将浏览.permissions文件中的文件列表并恢复这些文件的所有权和权限。
您可能需要使用sudo进行提交和签出。
确保预提交和结帐后脚本具有执行权限。
- 3 回答
- 0 关注
- 1372 浏览
添加回答
举报