Skip to content

Commit 1365ca3

Browse files
committed
Autogenerated HTML docs for v2.45.0-145-g3e4a2
1 parent 7af7f87 commit 1365ca3

Some content is hidden

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

52 files changed

+368
-85
lines changed

MyFirstContribution.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>My First Contribution to the Git Project</h1>
738-
<span id="revdate">2024-04-30</span>
738+
<span id="revdate">2024-05-13</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

MyFirstObjectWalk.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>My First Object Walk</h1>
738-
<span id="revdate">2024-04-30</span>
738+
<span id="revdate">2024-05-13</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

RelNotes/2.46.0.txt

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,22 @@ UI, Workflows & Features
1010
* The "--rfc" option of "git format-patch" learned to take an
1111
optional string value to be used in place of "RFC" to tweak the
1212
"[PATCH]" on the subject header.
13-
(merge ce36894509 jc/format-patch-rfc-more later to maint).
13+
14+
* The credential helper protocol, together with the HTTP layer, have
15+
been enhanced to support authentication schemes different from
16+
username & password pair, like Bearer and NTLM.
17+
18+
* Command line completion script (in contrib/) learned to complete
19+
"git symbolic-ref" a bit better (you need to enable plumbing
20+
commands to be completed with GIT_COMPLETION_SHOW_ALL_COMMANDS).
21+
22+
* When the user responds to a prompt given by "git add -p" with an
23+
unsupported command, list of available commands were given, which
24+
was too much if the user knew what they wanted to type but merely
25+
made a typo. Now the user gets a much shorter error message.
26+
27+
* The color parsing code learned to handle 12-bit RGB colors, spelled
28+
as "#RGB" (in addition to "#RRGGBB" that is already supported).
1429

1530

1631
Performance, Internal Implementation, Development Support etc.
@@ -23,6 +38,20 @@ Performance, Internal Implementation, Development Support etc.
2338
that are used in fuzzer tests, to make sure at least they build
2439
without bitrot, in Linux CI runs.
2540

41+
* Code to write out reftable has seen some optimization and
42+
simplification.
43+
44+
* Tests to ensure interoperability between reftable written by jgit
45+
and our code have been added and enabled in CI.
46+
47+
* The singleton index_state instance "the_index" has been eliminated
48+
by always instantiating "the_repository" and replacing references
49+
to "the_index" with references to its .index member.
50+
51+
52+
* Git-GUI has a new maintainer, Johannes Sixt.
53+
(merge e18ad8eb26 jc/git-gui-maintainer-update later to maint).
54+
2655

2756
Fixes since v2.45
2857
-----------------
@@ -52,4 +81,37 @@ Fixes since v2.45
5281
errored out. Now it keeps going.
5382
(merge c75662bfc9 js/for-each-repo-keep-going later to maint).
5483

84+
* zsh can pretend to be a normal shell pretty well except for some
85+
glitches that we tickle in some of our scripts. Work them around
86+
so that "vimdiff" and our test suite works well enough with it.
87+
(merge fedd5c79ff bc/zsh-compatibility later to maint).
88+
89+
* Command line completion support for zsh (in contrib/) has been
90+
updated to stop exposing internal state to end-user shell
91+
interaction.
92+
(merge 3c20acdf46 dk/zsh-git-repo-path-fix later to maint).
93+
94+
* Tests that try to corrupt in-repository files in chunked format did
95+
not work well on macOS due to its broken "mv", which has been
96+
worked around.
97+
(merge 861dc19ba8 jc/test-workaround-broken-mv later to maint).
98+
99+
* The maximum size of attribute files is enforced more consistently.
100+
(merge c793f9cb08 tb/attr-limits later to maint).
101+
102+
* Unbreak CI jobs so that we do not attempt to use Python 2 that has
103+
been removed from the platform.
104+
(merge 5ca0c455f1 ps/ci-python-2-deprecation later to maint).
105+
106+
* Git 2.43 started using the tree of HEAD as the source of attributes
107+
in a bare repository, which has severe performance implications.
108+
For now, revert the change, without ripping out a more explicit
109+
support for the attr.tree configuration variable.
110+
(merge 51441e6460 jc/no-default-attr-tree-in-bare later to maint).
111+
55112
* Other code cleanup, docfix, build fix, etc.
113+
(merge 4cf6e7bf5e jt/doc-submitting-rerolled-series later to maint).
114+
(merge a5a4cb7b27 rs/diff-parseopts-cleanup later to maint).
115+
(merge 395c130fd8 ma/win32-unix-domain-socket later to maint).
116+
(merge 7df2405b38 jk/ci-macos-gcc13-fix later to maint).
117+
(merge 55702c543e fa/p4-error later to maint).

ReviewingGuidelines.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Reviewing Patches in the Git Project</h1>
738-
<span id="revdate">2024-04-30</span>
738+
<span id="revdate">2024-05-13</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

SubmittingPatches.html

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Submitting Patches</h1>
738-
<span id="revdate">2024-04-30</span>
738+
<span id="revdate">2024-05-13</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">
@@ -1257,10 +1257,12 @@ <h4 id="_code_format_patch_code_and_code_send_email_code"><code>format-patch</co
12571257
e-mail tools, so that they may comment on specific portions of
12581258
your code. For this reason, each patch should be submitted
12591259
"inline" in a separate message.</p></div>
1260-
<div class="paragraph"><p>Multiple related patches should be grouped into their own e-mail
1261-
thread to help readers find all parts of the series. To that end,
1262-
send them as replies to either an additional "cover letter" message
1263-
(see below), the first patch, or the respective preceding patch.</p></div>
1260+
<div class="paragraph"><p>All subsequent versions of a patch series and other related patches should be
1261+
grouped into their own e-mail thread to help readers find all parts of the
1262+
series. To that end, send them as replies to either an additional "cover
1263+
letter" message (see below), the first patch, or the respective preceding patch.
1264+
Here is a <a href="MyFirstContribution.html#v2-git-send-email">step-by-step guide</a> on
1265+
how to submit updated versions of a patch series.</p></div>
12641266
<div class="paragraph"><p>If your log message (including your name on the
12651267
<code>Signed-off-by</code> trailer) is not writable in ASCII, make sure that
12661268
you send off a message in the correct encoding.</p></div>
@@ -1344,11 +1346,11 @@ <h2 id="_subsystems_with_dedicated_maintainers">Subsystems with dedicated mainta
13441346
<div class="ulist"><ul>
13451347
<li>
13461348
<p>
1347-
<code>git-gui/</code> comes from git-gui project, maintained by Pratyush Yadav:
1349+
<code>git-gui/</code> comes from git-gui project, maintained by Johannes Sixt:
13481350
</p>
13491351
<div class="literalblock">
13501352
<div class="content">
1351-
<pre><code>https://github.com/prati0100/git-gui.git</code></pre>
1353+
<pre><code>https://github.com/j6t/git-gui</code></pre>
13521354
</div></div>
13531355
</li>
13541356
<li>
@@ -1580,7 +1582,7 @@ <h3 id="_gnus">Gnus</h3>
15801582
<div id="footer">
15811583
<div id="footer-text">
15821584
Last updated
1583-
2024-05-01 10:56:52 PDT
1585+
2024-05-13 12:26:57 PDT
15841586
</div>
15851587
</div>
15861588
</body>

SubmittingPatches.txt

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -455,10 +455,12 @@ e-mail tools, so that they may comment on specific portions of
455455
your code. For this reason, each patch should be submitted
456456
"inline" in a separate message.
457457

458-
Multiple related patches should be grouped into their own e-mail
459-
thread to help readers find all parts of the series. To that end,
460-
send them as replies to either an additional "cover letter" message
461-
(see below), the first patch, or the respective preceding patch.
458+
All subsequent versions of a patch series and other related patches should be
459+
grouped into their own e-mail thread to help readers find all parts of the
460+
series. To that end, send them as replies to either an additional "cover
461+
letter" message (see below), the first patch, or the respective preceding patch.
462+
Here is a link:MyFirstContribution.html#v2-git-send-email[step-by-step guide] on
463+
how to submit updated versions of a patch series.
462464

463465
If your log message (including your name on the
464466
`Signed-off-by` trailer) is not writable in ASCII, make sure that
@@ -543,9 +545,9 @@ not a text/plain, it's something else.
543545
Some parts of the system have dedicated maintainers with their own
544546
repositories.
545547

546-
- `git-gui/` comes from git-gui project, maintained by Pratyush Yadav:
548+
- `git-gui/` comes from git-gui project, maintained by Johannes Sixt:
547549

548-
https://github.com/prati0100/git-gui.git
550+
https://github.com/j6t/git-gui
549551

550552
- `gitk-git/` comes from Paul Mackerras's gitk project:
551553

ToolsForGit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Tools for developing Git</h1>
738-
<span id="revdate">2024-04-30</span>
738+
<span id="revdate">2024-05-13</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

config.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,8 @@ terminals, this is usually not the same as setting to "white black".
316316
Colors may also be given as numbers between 0 and 255; these use ANSI
317317
256-color mode (but note that not all terminals may support this). If
318318
your terminal supports it, you may also specify 24-bit RGB values as
319-
hex, like `#ff0ab3`.
319+
hex, like `#ff0ab3`, or 12-bit RGB values like `#f1b`, which is
320+
equivalent to the 24-bit color `#ff11bb`.
320321
+
321322
The accepted attributes are `bold`, `dim`, `ul`, `blink`, `reverse`,
322323
`italic`, and `strike` (for crossed-out or "strikethrough" letters).

everyday.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Everyday Git With 20 Commands Or So</h1>
738-
<span id="revdate">2024-04-30</span>
738+
<span id="revdate">2024-05-13</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">

git-config.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1946,7 +1946,8 @@ <h3 id="_values">Values</h3>
19461946
<div class="paragraph"><p>Colors may also be given as numbers between 0 and 255; these use ANSI
19471947
256-color mode (but note that not all terminals may support this). If
19481948
your terminal supports it, you may also specify 24-bit RGB values as
1949-
hex, like <code>#ff0ab3</code>.</p></div>
1949+
hex, like <code>#ff0ab3</code>, or 12-bit RGB values like <code>#f1b</code>, which is
1950+
equivalent to the 24-bit color <code>#ff11bb</code>.</p></div>
19501951
<div class="paragraph"><p>The accepted attributes are <code>bold</code>, <code>dim</code>, <code>ul</code>, <code>blink</code>, <code>reverse</code>,
19511952
<code>italic</code>, and <code>strike</code> (for crossed-out or "strikethrough" letters).
19521953
The position of any attributes with respect to the colors

0 commit comments

Comments
 (0)