From f8765797a41a39f4dfc7030098c38283e6461a83 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 18 Oct 2005 18:42:14 -0700 Subject: [PATCH] Even when overwriting tags, report if they are changed or not. Signed-off-by: Junio C Hamano --- git-fetch.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/git-fetch.sh b/git-fetch.sh index 31b1cf03..31e5f4c7 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -114,7 +114,12 @@ fast_forward_local () { # is no way to guarantee "fast-forward" anyway. if test -f "$GIT_DIR/$1" then - echo >&2 "* $1: updating with $3" + if now_=$(cat "$GIT_DIR/$1") && test "$now_" = "$2" + then + echo >&2 "* $1: same as $3" + else + echo >&2 "* $1: updating with $3" + fi else echo >&2 "* $1: storing $3" fi -- 2.11.0