Web開発作業にSVNリポジトリを使用しています。リポジトリのチェックアウトを保持する開発サイトを設定しています。
リポジトリに対してコミットが行われるたびに開発サイトが更新されるように、SVNのコミット後フックを設定しました。
cd /home/www/dev_ssl
/usr/bin/svn up
これは正常に機能しますが、リポジトリのサイズが原因で、更新に長い時間(約3分)がかかり、定期的なコミットを行うとかなりイライラします。コミット後のフックを変更して、コミットされたファイル/ディレクトリのみを更新することですが、これを行う方法がわかりません。 「最も低い共通ディレクトリ」を更新することがおそらく最善の解決策です。
次のファイルをコミットする場合:
次のディレクトリが更新されます:/ branchs/feature_x /
誰かが私がこれを達成するソリューションを作成するのを手伝ってくれる?
更新:
svnlook dirs-changed
およびsvn up -N
変更された各フォルダの内容のみを更新するには:
cd /home/www/dev_ssl
svnlook dirs-changed [REPOS] -r [REV] | xargs /usr/bin/svn up -N
または、ファイルごとの方が適している場合(sed
を使用してアクション文字を削除):
svnlook changed [REPOS] -r [REV] | sed "s/^....//" | xargs /usr/bin/svn up
#!/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/local/svn/bin/svnlook
SVN=/usr/local/svn/bin/svn
DEV=/var/www/test
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
Windowsの場合:
for /F "eol=¬ delims=¬" %%A in ('svnlook dirs-changed %1 -r %2') do svn export "file:///c:/path/to/repo/%%A" "c:/svn_exports/%%A" --force
上記をコミット後のフックバッチファイル(またはVisualSVNのウィンドウ)にコピーするだけで完了です。更新されたディレクトリがc:\にエクスポートされます。
上記のc:/ path/to/repoの代わりに%1を使用してみることができますが、VisualSVNはバックスラッシュパスセパレーターで%1パスを提供し、svnlookはスラッシュでそれらを提供するため、機能しないことがわかりました。これは正しく機能していないようですので、リポジトリパスをハードコーディングします(「ファイル名、ディレクトリ名、またはボリュームラベルの構文が正しくありません」というエラーが発生しました)
この自家製のスクリプトを見てください: http://envrac.blogdns.net/shellscripts/export-automatique-d-un-projet-subversio !