Skip to content

Commit

Permalink
Merge branch 'maint-1.8.1' into maint
Browse files Browse the repository at this point in the history
* maint-1.8.1:
  merge-tree: fix typo in merge-tree.c::unresolved
  git-commit doc: describe use of multiple `-m` options
  git-pull doc: fix grammo ("conflicts" is plural)
  • Loading branch information
Junio C Hamano committed Mar 27, 2013
2 parents 3bbbf18 + 187c00c commit d011ab4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Documentation/git-commit.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ OPTIONS
-m <msg>::
--message=<msg>::
Use the given <msg> as the commit message.
If multiple `-m` options are given, their values are
concatenated as separate paragraphs.

-t <file>::
--template=<file>::
Expand Down
2 changes: 1 addition & 1 deletion Documentation/git-pull.txt
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ $ git merge origin/next
------------------------------------------------


If you tried a pull which resulted in a complex conflicts and
If you tried a pull which resulted in complex conflicts and
would want to start over, you can recover with 'git reset'.


Expand Down
2 changes: 1 addition & 1 deletion builtin/merge-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ static void unresolved(const struct traverse_info *info, struct name_entry n[3])
unsigned dirmask = 0, mask = 0;

for (i = 0; i < 3; i++) {
mask |= (1 << 1);
mask |= (1 << i);
if (n[i].mode && S_ISDIR(n[i].mode))
dirmask |= (1 << i);
}
Expand Down

0 comments on commit d011ab4

Please sign in to comment.