Skip to content

Commit 03b1c42

Browse files
committed
Autogenerated HTML docs for v2.46.1-530-g3969d
1 parent 210f01b commit 03b1c42

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+81
-62
lines changed

DecisionMaking.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Decision-Making Process in the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-13</span>
445+
<span id="revdate">2024-09-16</span>
446446
</div>
447447
</div>
448448
<div id="content">

MyFirstContribution.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>My First Contribution to the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-13</span>
445+
<span id="revdate">2024-09-16</span>
446446
</div>
447447
</div>
448448
<div id="content">

MyFirstObjectWalk.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>My First Object Walk</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-13</span>
445+
<span id="revdate">2024-09-16</span>
446446
</div>
447447
</div>
448448
<div id="content">

RelNotes/2.47.0.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ UI, Workflows & Features
6565
to discourage its use by interactive users. Add documentation to
6666
help tool writers.
6767

68+
* "git apply --3way" learned to take "--ours" and other options.
69+
70+
6871
Performance, Internal Implementation, Development Support etc.
6972
--------------------------------------------------------------
7073

@@ -241,3 +244,4 @@ Fixes since v2.46
241244
* Other code cleanup, docfix, build fix, etc.
242245
(merge be10ac7037 jc/mailinfo-header-cleanup later to maint).
243246
(merge 9a36ea37ae jc/doc-skip-fetch-all-and-prefetch later to maint).
247+
(merge 4460e052e0 jc/range-diff-lazy-setup later to maint).

ReviewingGuidelines.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Reviewing Patches in the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-13</span>
445+
<span id="revdate">2024-09-16</span>
446446
</div>
447447
</div>
448448
<div id="content">

SubmittingPatches.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Submitting Patches</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-13</span>
445+
<span id="revdate">2024-09-16</span>
446446
</div>
447447
</div>
448448
<div id="content">

ToolsForGit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Tools for developing Git</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-13</span>
445+
<span id="revdate">2024-09-16</span>
446446
</div>
447447
</div>
448448
<div id="content">

everyday.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Everyday Git With 20 Commands Or So</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-13</span>
445+
<span id="revdate">2024-09-16</span>
446446
</div>
447447
</div>
448448
<div id="content">

git-apply.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,8 @@ <h2 id="_name">NAME</h2>
451451
<h2 id="_synopsis">SYNOPSIS</h2>
452452
<div class="sectionbody">
453453
<div class="verseblock">
454-
<pre class="content"><em>git apply</em> [--stat] [--numstat] [--summary] [--check] [--index | --intent-to-add] [--3way]
454+
<pre class="content"><em>git apply</em> [--stat] [--numstat] [--summary] [--check]
455+
[--index | --intent-to-add] [--3way] [--ours | --theirs | --union]
455456
[--apply] [--no-add] [--build-fake-ancestor=&lt;file&gt;] [-R | --reverse]
456457
[--allow-binary-replacement | --binary] [--reject] [-z]
457458
[-p&lt;n&gt;] [-C&lt;n&gt;] [--inaccurate-eof] [--recount] [--cached]
@@ -553,6 +554,13 @@ <h2 id="_options">OPTIONS</h2>
553554
When used with the <code>--cached</code> option, any conflicts are left at higher stages
554555
in the cache.</p>
555556
</dd>
557+
<dt class="hdlist1">--ours</dt>
558+
<dt class="hdlist1">--theirs</dt>
559+
<dt class="hdlist1">--union</dt>
560+
<dd>
561+
<p>Instead of leaving conflicts in the file, resolve conflicts favouring
562+
our (or their or both) side of the lines. Requires --3way.</p>
563+
</dd>
556564
<dt class="hdlist1">--build-fake-ancestor=&lt;file&gt;</dt>
557565
<dd>
558566
<p>Newer <em>git diff</em> output has embedded <em>index information</em>
@@ -835,7 +843,7 @@ <h2 id="_git">GIT</h2>
835843
</div>
836844
<div id="footer">
837845
<div id="footer-text">
838-
Last updated 2023-10-23 14:43:46 -0700
846+
Last updated 2024-09-16 14:32:02 -0700
839847
</div>
840848
</div>
841849
</body>

git-apply.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ git-apply - Apply a patch to files and/or to the index
99
SYNOPSIS
1010
--------
1111
[verse]
12-
'git apply' [--stat] [--numstat] [--summary] [--check] [--index | --intent-to-add] [--3way]
12+
'git apply' [--stat] [--numstat] [--summary] [--check]
13+
[--index | --intent-to-add] [--3way] [--ours | --theirs | --union]
1314
[--apply] [--no-add] [--build-fake-ancestor=<file>] [-R | --reverse]
1415
[--allow-binary-replacement | --binary] [--reject] [-z]
1516
[-p<n>] [-C<n>] [--inaccurate-eof] [--recount] [--cached]
@@ -92,6 +93,12 @@ OPTIONS
9293
When used with the `--cached` option, any conflicts are left at higher stages
9394
in the cache.
9495

96+
--ours::
97+
--theirs::
98+
--union::
99+
Instead of leaving conflicts in the file, resolve conflicts favouring
100+
our (or their or both) side of the lines. Requires --3way.
101+
95102
--build-fake-ancestor=<file>::
96103
Newer 'git diff' output has embedded 'index information'
97104
for each blob to help identify the original version that

0 commit comments

Comments
 (0)