]> git.pld-linux.org Git - packages/lighttpd.git/blame_incremental - branch.sh
- applied in svn
[packages/lighttpd.git] / branch.sh
... / ...
CommitLineData
1#!/bin/sh
2set -e
3svn=svn://svn.lighttpd.net/lighttpd
4tag=lighttpd-1.4.23
5branch=lighttpd-1.4.x
6
7old=$svn/tags/$tag
8new=$svn/branches/$branch
9echo "Running diff: $old -> $new"
10LC_ALL=C svn diff --old=$old --new=$new > lighttpd-branch.diff.tmp
11
12echo "Excluding files which change version or were not in dist tarball"
13filterdiff -x tests/mod-extforward.conf -x ChangeLog -x .cvsignore -x src/.cvsignore -x tests/.cvsignore -x doc/.cvsignore -x 'configure.in' -x 'SConstruct' -x 'CMakeLists.txt' -x 'src/CMakeLists.txt' -x 'src/config.h.cmake' -x 'src/mod_uploadprogress.c' lighttpd-branch.diff.tmp > lighttpd-branch.diff.tmp2
14mv -f lighttpd-branch.diff.tmp2 lighttpd-branch.diff
15rm -f lighttpd-branch.diff.tmp
This page took 0.048481 seconds and 4 git commands to generate.