Skip to content

Commit

Permalink
Merge branch 'pt/pull-builtin'
Browse files Browse the repository at this point in the history
* pt/pull-builtin:
  merge: grammofix in please-commit-before-merge message
  • Loading branch information
Junio C Hamano committed Oct 14, 2015
2 parents c35acb6 + b744767 commit 1311587
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 @@ -69,7 +69,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 1311587

Please sign in to comment.