From bd9e6617827818fd043452c08c606f07b78014a0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- scripts/svnchangesince | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100755 scripts/svnchangesince (limited to 'scripts/svnchangesince') diff --git a/scripts/svnchangesince b/scripts/svnchangesince new file mode 100755 index 00000000..eec267e5 --- /dev/null +++ b/scripts/svnchangesince @@ -0,0 +1,63 @@ +#!/bin/sh +# +# Written by Thiago Macieira +# This file is in the public domain. +# +# Shows the changes to the subversion repository since the local copy +# was last updated. +# + +showdiff=false +showlog=true + +while test $# -ge 1; do + case "$1" in + -d) + showdiff=true + shift + ;; + + -D) + showdiff=false + shift + ;; + + -l) + showlog=true + shift + ;; + + -L) + showlog=false + shift + ;; + + -h) + cat <