diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-12-28 01:16:20 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-28 01:39:30 -0800 |
commit | 7d60ab2c15ed59169d9512de6aa40811b7940cd2 (patch) | |
tree | 6583b256b9301bee4530fcb8360604fa0a096258 /git-svn.perl | |
parent | ed92f17026210db7ee4f3f0af39a569ae220cb5b (diff) | |
download | git-7d60ab2c15ed59169d9512de6aa40811b7940cd2.tar.gz |
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 <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index 0ef13b26a3..a772ce81e7 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; } |