1
0
mirror of https://github.com/git/git.git synced 2025-03-21 21:13:57 +00:00

push: fix english in non-fast-forward message

We must use an article when referring to the section
because it is a non-proper noun, and it must be the definite
article because we are referring to a specific section.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2009-09-06 02:46:25 -04:00 committed by Junio C Hamano
parent bc29df6022
commit e1f8f0cfbe

View File

@ -160,7 +160,7 @@ static int do_push(const char *repo, int flags)
if (nonfastforward) {
printf("To prevent you from losing history, non-fast-forward updates were rejected.\n"
"Merge the remote changes before pushing again.\n"
"See 'non-fast forward' section of 'git push --help' for details.\n");
"See the 'non-fast forward' section of 'git push --help' for details.\n");
}
errs++;
}