rebase: Make the fast-fowarding message more user-friendly by using branch names instead of SHA1 IDs.

Signed-off-by: Robert Shearman <rob@codeweavers.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Robert Shearman 2006-07-27 10:32:46 +01:00 коммит произвёл Junio C Hamano
Родитель 83c31614ce
Коммит d587ed13bc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -280,7 +280,7 @@ git-reset --hard "$onto"
# we just fast forwarded.
if test "$mb" = "$branch"
then
echo >&2 "Fast-forwarded $branch to $newbase."
echo >&2 "Fast-forwarded $branch_name to $onto_name."
exit 0
fi