Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Shearman <rob@codeweavers.com>2006-07-27 13:32:46 +0400
committerJunio C Hamano <junkio@cox.net>2006-07-31 11:15:59 +0400
commitd587ed13bc37550a6d21067127f6c057c5d5e7fc (patch)
tree6cdf47dcc4fbaf35949f99e8e4e1ba668b9de7f2 /git-rebase.sh
parent83c31614ceae2612b7cdba40e6401716fe854cd2 (diff)
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>
Diffstat (limited to 'git-rebase.sh')
-rwxr-xr-xgit-rebase.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-rebase.sh b/git-rebase.sh
index 240032f32d..7d3a5d0e71 100755
--- a/git-rebase.sh
+++ b/git-rebase.sh
@@ -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