From: Lukas Sandström Date: Sat, 25 Feb 2006 11:20:13 +0000 (+0100) Subject: git-fetch: print the new and old ref when fast-forwarding X-Git-Tag: v1.3.0-rc1~139 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=9d7f73d43fa49d0d2f5a8cfcce9d659e8ad2d265;p=git.git git-fetch: print the new and old ref when fast-forwarding Signed-off-by: Lukas Sandström Signed-off-by: Junio C Hamano --- diff --git a/git-fetch.sh b/git-fetch.sh index de4f011e..0346d4a4 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -164,6 +164,7 @@ fast_forward_local () { ;; *,$local) echo >&2 "* $1: fast forward to $3" + echo >&2 " from $local to $2" git-update-ref "$1" "$2" "$local" ;; *)