]> git.pld-linux.org Git - packages/php.git/commitdiff
- add branch diff generator
authorElan Ruusamäe <glen@pld-linux.org>
Sun, 28 Jun 2009 17:13:53 +0000 (17:13 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    php-branch.sh -> 1.1

php-branch.sh [new file with mode: 0644]

diff --git a/php-branch.sh b/php-branch.sh
new file mode 100644 (file)
index 0000000..9f74adf
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/sh
+tag=php_5_2_10
+branch=PHP_5_2
+
+if [ ! -d $tag ]; then
+       cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r $tag -d $tag php5
+fi
+if [ ! -d $branch ]; then
+       cvs -d :pserver:cvsread@cvs.php.net:/repository checkout -r $branch -d $branch php5
+fi
+
+cd $tag && cvs up -d && cd ..
+cd $branch && cvs up -d && cd ..
+
+diff -ur -x CVS $tag $branch > php-branch.diff
This page took 2.155038 seconds and 4 git commands to generate.