diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bd9e6617827818fd043452c08c606f07b78014a0 (patch) | |
tree | 425bb4c3168f9c02f10150f235d2cb998dcc6108 /scripts/cvsforwardport | |
download | tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'scripts/cvsforwardport')
-rwxr-xr-x | scripts/cvsforwardport | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/scripts/cvsforwardport b/scripts/cvsforwardport new file mode 100755 index 00000000..10397845 --- /dev/null +++ b/scripts/cvsforwardport @@ -0,0 +1,32 @@ +#!/bin/sh +# Forwardport the last change in a branch to HEAD +# Usage: cvsforwardport <files> +# WARNING: the branch tag is hardcoded into the script, make sure to check it! +# +# Initial author: Dirk Mueller +# Support for multiple command-line arguments: David Faure + +BRANCH=KDE_3_4_BRANCH +echo "Forwardporting to HEAD" +TMPFILE=`mktemp cvsforwardport.XXXXXX` || exit 1 +files=$* +until test $# -eq 0; do + + echo "looking for last change to $1..." + CVSLASTCHANGE_KEEP_WHITESPACE=1 cvslastchange $1 > $TMPFILE + echo "browsing last change to $1..." + less $TMPFILE + cvs up -A $1 + patch < $TMPFILE + rm -f $TMPFILE + echo "showing diff for $1..." + cvs diff $1 | less + + shift +done + +echo "Press ENTER now to commit ($files) or Ctrl+C to abort" +read confirm + +cvs commit $files +cvs up -r $BRANCH $files |