Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
apply: document --3way option
author
Junio C Hamano
<gitster@pobox.com>
Thu, 10 May 2012 21:08:29 +0000
(14:08 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 9 Jul 2012 21:40:03 +0000
(14:40 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-apply.txt
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
f2633eb
)
diff --git
a/Documentation/git-apply.txt
b/Documentation/git-apply.txt
index afd2c9ae59e9145f377d5c702df27bf861c9b2f5..634b84e4b9a06b58f4c818a314c5cb2d5880e1bd 100644
(file)
--- a/
Documentation/git-apply.txt
+++ b/
Documentation/git-apply.txt
@@
-9,7
+9,7
@@
git-apply - Apply a patch to files and/or to the index
SYNOPSIS
--------
[verse]
SYNOPSIS
--------
[verse]
-'git apply' [--stat] [--numstat] [--summary] [--check] [--index]
+'git apply' [--stat] [--numstat] [--summary] [--check] [--index]
[--3way]
[--apply] [--no-add] [--build-fake-ancestor=<file>] [-R | --reverse]
[--allow-binary-replacement | --binary] [--reject] [-z]
[-p<n>] [-C<n>] [--inaccurate-eof] [--recount] [--cached]
[--apply] [--no-add] [--build-fake-ancestor=<file>] [-R | --reverse]
[--allow-binary-replacement | --binary] [--reject] [-z]
[-p<n>] [-C<n>] [--inaccurate-eof] [--recount] [--cached]
@@
-72,6
+72,15
@@
OPTIONS
cached data, apply the patch, and store the result in the index
without using the working tree. This implies `--index`.
cached data, apply the patch, and store the result in the index
without using the working tree. This implies `--index`.
+-3::
+--3way::
+ When the patch does not apply cleanly, fall back on 3-way merge if
+ the patch records the identity of blobs it is supposed to apply to,
+ and we have those blobs available locally, possibly leaving the
+ conflict markers in the files in the working tree for the user to
+ resolve. This option implies the `--index` option, and is incompatible
+ with the `--reject` and the `--cached` options.
+
--build-fake-ancestor=<file>::
Newer 'git diff' output has embedded 'index information'
for each blob to help identify the original version that
--build-fake-ancestor=<file>::
Newer 'git diff' output has embedded 'index information'
for each blob to help identify the original version that