Browse Source

Merge branch 'maint-1.8.1' into maint

* 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)
maint
Junio C Hamano 12 years ago
parent
commit
d011ab4312
  1. 2
      Documentation/git-commit.txt
  2. 2
      Documentation/git-pull.txt
  3. 2
      builtin/merge-tree.c

2
Documentation/git-commit.txt

@ -137,6 +137,8 @@ OPTIONS @@ -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>::

2
Documentation/git-pull.txt

@ -218,7 +218,7 @@ $ git merge origin/next @@ -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'.



2
builtin/merge-tree.c

@ -245,7 +245,7 @@ static void unresolved(const struct traverse_info *info, struct name_entry n[3]) @@ -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);
}

Loading…
Cancel
Save