svn2cl commit: r145 - svn2cl
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
svn2cl commit: r145 - svn2cl
- From: "Commits of the svn2cl project." <svn2cl-commits [at] lists.arthurdejong.org>
- To: svn2cl-commits [at] lists.arthurdejong.org
- Reply-to: svn2cl-users [at] lists.arthurdejong.org
- Subject: svn2cl commit: r145 - svn2cl
- Date: Fri, 13 Aug 2010 11:39:58 +0200 (CEST)
Author: arthur
Date: Fri Aug 13 11:39:56 2010
New Revision: 145
URL: http://arthurdejong.org/viewvc/svn2cl?view=rev&revision=145
Log:
also pass -g, --use-merge-history, -c, --change, -l, --trust-server-cert and
--config-option to svn commands
Modified:
svn2cl/svn2cl.sh
Modified: svn2cl/svn2cl.sh
==============================================================================
--- svn2cl/svn2cl.sh Fri Aug 13 10:07:35 2010 (r144)
+++ svn2cl/svn2cl.sh Fri Aug 13 11:39:56 2010 (r145)
@@ -166,43 +166,40 @@
OUTSTYLE="html"
shift
;;
- -r|--revision|--targets|--limit)
- # add these as extra options to the command (with argument)
+ -r|--revision|-c|--change|--targets|-l|--limit)
+ # add these as extra options to the log command (with argument)
arg=`echo "$2" | sed "s/'/'\"'\"'/g"`
SVNLOGCMD="$SVNLOGCMD $1 '$arg'"
shift 2 || { echo "$prog: option requires an argument -- $1";exit 1; }
;;
- --username|--password|--config-dir)
- # add these as extra options to the command (with argument)
+ --revision=*|--change=*|--targets=*|--limit=*)
+ # these are single argument versions of the above (with argument)
+ arg=`echo "$1" | sed "s/'/'\"'\"'/g"`
+ SVNLOGCMD="$SVNLOGCMD '$arg'"
+ shift
+ ;;
+ --username|--password|--config-dir|--config-option)
+ # add these as extra options to the log and info commands (with argument)
arg=`echo "$2" | sed "s/'/'\"'\"'/g"`
SVNLOGCMD="$SVNLOGCMD $1 '$arg'"
- # also add to svn info command
SVNINFOCMD="$SVNINFOCMD $1 '$arg'"
shift 2 || { echo "$prog: option requires an argument -- $1";exit 1; }
;;
- --revision=*|--targets=*|--limit=*)
- # these are single argument versions of the above
- arg=`echo "$1" | sed "s/'/'\"'\"'/g"`
- SVNLOGCMD="$SVNLOGCMD '$arg'"
- shift
- ;;
- --username=*|--password=*|--config-dir=*)
- # these are single argument versions of the above
+ --username=*|--password=*|--config-dir=*|--config-option=*)
+ # these are single argument versions of the above (with argument)
arg=`echo "$1" | sed "s/'/'\"'\"'/g"`
SVNLOGCMD="$SVNLOGCMD '$arg'"
- # also add to svn info command
SVNINFOCMD="$SVNINFOCMD '$arg'"
shift
;;
- --stop-on-copy)
- # add these as simple options
+ -g|--use-merge-history|--stop-on-copy)
+ # add these as simple options to the log command
SVNLOGCMD="$SVNLOGCMD $1"
shift
;;
- --no-auth-cache|--non-interactive)
- # add these as simple options
+ --no-auth-cache|--non-interactive|--trust-server-cert)
+ # add these as simple options to both the log and info commands
SVNLOGCMD="$SVNLOGCMD $1"
- # also add to svn info command
SVNINFOCMD="$SVNINFOCMD $1"
shift
;;
@@ -219,8 +216,8 @@
echo "Usage: $prog [OPTION]... [PATH]..."
echo "Generate a ChangeLog from a subversion repository."
echo ""
- echo " --strip-prefix=NAME prefix to strip from all entries, defaults"
- echo " path inside the repository"
+ echo " --strip-prefix=NAME prefix to strip from all entries, defaults
path"
+ echo " inside the repository"
echo " --linelen=NUM maximum length of an output line"
echo " --group-by-day group changelog entries by day"
echo " --separate-daylogs put a blank line between grouped by day
entries"
@@ -243,9 +240,10 @@
echo " -V, --version output version information and exit"
echo ""
echo "PATH arguments and the following options are passed to the svn log"
- echo "command: -r, --revision, --targets --stop-on-copy, --username,"
- echo "--password, --no-auth-cache, --non-interactive, --config-dir and"
- echo "--limit (see 'svn help log' for more information)."
+ echo "command: -r, --revision, -g, --use-merge-history, -c, --change,"
+ echo "--targets, --stop-on-copy, -l, --username, --password,
--no-auth-cache,"
+ echo "--non-interactive, --trust-server-cert, --config-dir and
--config-option"
+ echo "(see 'svn help log' for more information)."
exit 0
;;
-*)
--
To unsubscribe send an email to
svn2cl-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/svn2cl-commits
- svn2cl commit: r145 - svn2cl,
Commits of the svn2cl project.