Junio C Hamano <junkio@xxxxxxx> writes: > Linus Torvalds <torvalds@xxxxxxxx> writes: > >> Has it always spit out those annoying >> >> xyz: same as branch 'xyz' of so-and-so-repo >> >> even without "-v"? I thought I killed them at some point, but >> either they're back, or I'm just confused. > > "same" is protected with [ "$verboase" ] only on the tag side > but not on the head side, which I think is a bug. Will fix. ...like this. --- diff --git a/git-fetch.sh b/git-fetch.sh index 69bd810..6ee755c 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -166,7 +166,7 @@ fast_forward_local () { mb=$(git-merge-base "$local" "$2") && case "$2,$mb" in $local,*) - echo >&2 "* $1: same as $3" + [ "$verbose" ] && echo >&2 "* $1: same as $3" ;; *,$local) echo >&2 "* $1: fast forward to $3" - : 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