From 63621cb402a6bcac825ee5910b8d6d5ad0c5f296 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Elan=20Ruusam=C3=A4e?= Date: Thu, 25 Jun 2009 11:08:10 +0000 Subject: [PATCH] - script to make branch diff for php4 Changed files: php4-branch.sh -> 1.1 --- php4-branch.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 php4-branch.sh diff --git a/php4-branch.sh b/php4-branch.sh new file mode 100644 index 0000000..5f52678 --- /dev/null +++ b/php4-branch.sh @@ -0,0 +1,15 @@ +#!/bin/sh +tag=php_4_4_9 +branch=PHP_4_4 + +if [ ! -d $tag ]; then + cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r $tag -d $tag php-src +fi +if [ ! -d $branch ]; then + cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r $branch -d $branch php-src +fi + +cd $tag && cvs up -d && cd .. +cd $branch && cvs up -d && cd .. + +diff -ur $tag $branch > php4-branch.diff -- 2.44.0