filter-branch: Remove broken and unnecessary summary of rewritten refs.

There was an attempt to list the refs that were rewritten by filtering
the output of 'git show-ref' for 'refs/original'. But it got the
grep argument wrong, which did not account for the SHA1 that is listed
before the ref.

Moreover, right before this summary is the loop that actually does the
rewriting, and the rewritten refs are listed there anyway. So this extra
summary is plainly too verbose.

Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Johannes Sixt 2007-12-18 08:30:47 +01:00 коммит произвёл Junio C Hamano
Родитель 02ff62504e
Коммит 91c3aced4c
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -342,7 +342,6 @@ done < "$tempdir"/heads
_x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' _x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40" _x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
count=0
echo echo
while read ref while read ref
do do
@ -380,7 +379,6 @@ do
;; ;;
esac esac
git update-ref -m "filter-branch: backup" "$orig_namespace$ref" $sha1 git update-ref -m "filter-branch: backup" "$orig_namespace$ref" $sha1
count=$(($count+1))
done < "$tempdir"/heads done < "$tempdir"/heads
# TODO: This should possibly go, with the semantics that all positive given # TODO: This should possibly go, with the semantics that all positive given
@ -423,9 +421,6 @@ fi
cd ../.. cd ../..
rm -rf "$tempdir" rm -rf "$tempdir"
echo
test $count -gt 0 && echo "These refs were rewritten:"
git show-ref | grep ^"$orig_namespace"
unset GIT_DIR GIT_WORK_TREE GIT_INDEX_FILE unset GIT_DIR GIT_WORK_TREE GIT_INDEX_FILE
test -z "$ORIG_GIT_DIR" || GIT_DIR="$ORIG_GIT_DIR" && export GIT_DIR test -z "$ORIG_GIT_DIR" || GIT_DIR="$ORIG_GIT_DIR" && export GIT_DIR