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 | |
parent | git-svn: remove non-delta fetch code paths (diff) | |
download | tgif-7d60ab2c15ed59169d9512de6aa40811b7940cd2.tar.xz |
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>
-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; } |