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:
authorJunio C Hamano <gitster@pobox.com>2009-09-06 11:39:32 +0400
committerJunio C Hamano <gitster@pobox.com>2009-09-06 11:39:32 +0400
commit6ea71fe7d36cf5b81c2100d97a822ecf0bc04746 (patch)
tree5058d69aa6616677f6ea39ceae41eef1ed89959e /builtin-push.c
parent3fb9d58235ce4985689840b901aecacc6e3bd094 (diff)
parent14b772a0d7cb983ab0c13d672ea89192c460d070 (diff)
Merge branch 'maint'
* maint: push: re-flow non-fast-forward message push: fix english in non-fast-forward message
Diffstat (limited to 'builtin-push.c')
-rw-r--r--builtin-push.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin-push.c b/builtin-push.c
index 67f6d96fbe..787011f928 100644
--- a/builtin-push.c
+++ b/builtin-push.c
@@ -158,9 +158,9 @@ static int do_push(const char *repo, int flags)
error("failed to push some refs to '%s'", url[i]);
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");
+ printf("To prevent you from losing history, non-fast-forward updates were rejected\n"
+ "Merge the remote changes before pushing again. See the 'non-fast forward'\n"
+ "section of 'git push --help' for details.\n");
}
errs++;
}