Use 'fast-forward' all over the place

It's a compound word.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Felipe Contreras
2009-10-24 11:31:32 +03:00
committed by Junio C Hamano
parent 78d553b7d7
commit a75d7b5409
35 changed files with 71 additions and 71 deletions

View File

@ -168,7 +168,7 @@ pick_one () {
output git reset --hard $sha1
test "a$1" = a-n && output git reset --soft $current_sha1
sha1=$(git rev-parse --short $sha1)
output warn Fast forward to $sha1
output warn Fast-forward to $sha1
else
output git cherry-pick "$@"
fi
@ -248,9 +248,9 @@ pick_one_preserving_merges () {
done
case $fast_forward in
t)
output warn "Fast forward to $sha1"
output warn "Fast-forward to $sha1"
output git reset --hard $sha1 ||
die "Cannot fast forward to $sha1"
die "Cannot fast-forward to $sha1"
;;
f)
first_parent=$(expr "$new_parents" : ' \([^ ]*\)')