From: Eric Wong Date: Thu, 28 Dec 2006 09:16:20 +0000 (-0800) Subject: git-svn: print out the SVN library version in --version, too X-Git-Tag: v1.5.0-rc1~167 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7d60ab2c15ed59169d9512de6aa40811b7940cd2;p=git.git git-svn: print out the SVN library version in --version, too This could be useful in finding new problems and helping users debug. Signed-off-by: Eric Wong Signed-off-by: Junio C Hamano --- diff --git a/git-svn.perl b/git-svn.perl index 0ef13b26a..a772ce81e 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -216,7 +216,7 @@ information. } sub version { - print "git-svn version $VERSION\n"; + print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n"; exit 0; }