Staging
v0.5.1
https://github.com/git/git
Revision 1b7e543a6e2f156536a3cf227f9da1029bba6265 authored by Dévai Tamás on 11 February 2009, 23:14:02 UTC, committed by Junio C Hamano on 16 February 2009, 02:04:48 UTC
If the new svn root URL given with the svn-remote.<repo>.rewriteRoot config option
(or by the --rewrite-root option to 'git svn init') contains a username
(such as 'svn+ssh://username@example.com/repo'), find_by_url() cannot find
the repository URL, because the URL contained in the commit message does have
the username removed.

Signed-off-by: Dévai Tamás <devait@mailbox.sk>
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 88a667f
Raw File
Tip revision: 1b7e543a6e2f156536a3cf227f9da1029bba6265 authored by Dévai Tamás on 11 February 2009, 23:14:02 UTC
git-svn: Fix for rewriteRoot URL containing username.
Tip revision: 1b7e543
check_bindir
#!/bin/sh
bindir="$1"
gitexecdir="$2"
gitcmd="$3"
if test "$bindir" != "$gitexecdir" -a -x "$gitcmd"
then
	echo
	echo "!! You have installed git-* commands to new gitexecdir."
	echo "!! Old version git-* commands still remain in bindir."
	echo "!! Mixing two versions of Git will lead to problems."
	echo "!! Please remove old version commands in bindir now."
	echo
fi
back to top