1

我使用了我在某处找到的一些脚本:(我是一个完全 svn 的菜鸟,它是否用于在将文件提交到仓库后复制文件?)

#!/bin/bash

REPOS="$1"
REV="$2"

# A - Item added to repository
# D - Item deleted from repository
# U - File contents changed
# _U - Properties of item changed; note the leading underscore
# UU - File contents and properties changed

# Files and directories can be distinguished, as directory paths are displayed with a trailing "/" character.

LOOK=/usr/bin/svnlook
SVN=/usr/bin/svn 
DEV=/usr/local/node/

cd /var/tmp/svn
  for changes in `$LOOK changed $REPOS | awk '{print $1 "=" $2;}'`;
  do
        len=${#changes}
        idx=`expr index "$changes" =`;
        directory=${changes:$idx};
        action=${changes:0:$idx-1};
        if [ ${changes:len-1} = '/' ]
        then
            case "$action" in
                "A" ) \
                    mkdir --mode=775 -p $DEV/$directory;
                    chown nobody:nobody $DEV/$directory;
                    chmod 775 $DEV/$directory;
                    ;;
                "D" ) \
                    rmdir $DEV/$directory;
                    ;;
            esac
        else
            case "$action" in
                "A"|"U"|"UU" ) \
                    $SVN export --force --non-interactive -r HEAD -q file://$REPOS/$directory;
                    BASE=`basename $directory`;
                    DIR=`dirname $directory`;
                    chown nobody:nobody $BASE;
                    chmod 775 $BASE;
                    mkdir --mode=775 -p $DEV/$DIR;
                    cp -f --preserve=ownership $BASE $DEV/$DIR;
                    unlink $BASE;
                    ;;
                "D" ) \
                    rm -f $DEV/$directory;
                    ;;
            esac
        fi
  done

exit 0

路径:

Path i want to copy all the modified files after committing:
/usr/local/node/

Repo location:
/var/lib/svn/api/

Hook location:
/var/lib/svn/api/hooks/post-commit

当我从终端运行它时,我得到:

需要存储库参数键入“svnlook help”以供使用。

当我提交时 /usr/local/node/ 没有改变

4

1 回答 1

1

我假设您在手动运行此脚本时忘记传递任何参数。第一个参数 ( $1) 分配给$REPOS,在循环中svnlook执行的命令中使用。for

确保正确运行脚本——将存储库路径作为第一个参数,将刚刚提交的修订作为第二个参数。

在执行此操作之前,请务必花一些时间阅读 SVN 书籍——它必须以 root 身份运行(请参阅chown(1)命令),它可能会删除您关心的数据(请参阅unlink(1)rm(1)命令)。

于 2011-11-22T00:54:25.980 回答