Hi, On Wed, Apr 23, 2008 at 10:53:47AM -0700, Junio C Hamano wrote: > "git clone [options] $src $dst excess-garbage" simply ignored > excess-garbage without giving any diagnostic message. Fix it. > > Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> > [...] > --- a/git-clone.sh > +++ b/git-clone.sh > @@ -219,6 +219,7 @@ fi > if test -n "$2" > then > dir="$2" > + test $# == 2 || die "excess parameter to git-clone" ^^ I think you mean: test $# = 2 || die "excess parameter to git-clone" I just noticed because it broke t1020-subdirectory at me. Best, Gábor -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html