Skip to content

Commit

Permalink
merge: grammofix in please-commit-before-merge message
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Alex Henrie authored and Junio C Hamano committed Oct 2, 2015
1 parent b145660 commit b744767
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion advice.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ void NORETURN die_conclude_merge(void)
{
error(_("You have not concluded your merge (MERGE_HEAD exists)."));
if (advice_resolve_conflict)
advise(_("Please, commit your changes before you can merge."));
advise(_("Please, commit your changes before merging."));
die(_("Exiting because of unfinished merge."));
}

Expand Down
2 changes: 1 addition & 1 deletion contrib/examples/git-pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ as appropriate to mark resolution and make a commit.")"
die_merge () {
if [ $(git config --bool --get advice.resolveConflict || echo true) = "true" ]; then
die "$(gettext "You have not concluded your merge (MERGE_HEAD exists).
Please, commit your changes before you can merge.")"
Please, commit your changes before merging.")"
else
die "$(gettext "You have not concluded your merge (MERGE_HEAD exists).")"
fi
Expand Down

0 comments on commit b744767

Please sign in to comment.