Skip to content

Commit efed242

Browse files
committed
Autogenerated HTML docs for v2.51.0-167-g6ad80
1 parent 9c06b86 commit efed242

File tree

5 files changed

+48
-10
lines changed

5 files changed

+48
-10
lines changed

MyFirstContribution.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,15 @@ respond to you. It's better to ask your questions in the channel so that you
5252
can be answered if you disconnect and so that others can learn from the
5353
conversation.
5454

55+
==== https://discord.gg/GRFVkzgxRd[#discord] on Discord
56+
This is an unofficial Git Discord server for everyone, from people just
57+
starting out with Git to those who develop it. It's a great place to ask
58+
questions, share tips, and connect with the broader Git community in real time.
59+
60+
The server has channels for general discussions and specific channels for those
61+
who use Git and those who develop it. The server's search functionality also
62+
allows you to find previous conversations and answers to common questions.
63+
5564
[[getting-started]]
5665
== Getting Started
5766

MyFirstContribution.html

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,19 @@ <h4 id="_git_devel_on_libera_chat"><a class="anchor" href="#_git_devel_on_libera
508508
conversation.</p>
509509
</div>
510510
</div>
511+
<div class="sect3">
512+
<h4 id="_discord_on_discord"><a class="anchor" href="#_discord_on_discord"></a><a href="https://discord.gg/GRFVkzgxRd">#discord</a> on Discord</h4>
513+
<div class="paragraph">
514+
<p>This is an unofficial Git Discord server for everyone, from people just
515+
starting out with Git to those who develop it. It&#8217;s a great place to ask
516+
questions, share tips, and connect with the broader Git community in real time.</p>
517+
</div>
518+
<div class="paragraph">
519+
<p>The server has channels for general discussions and specific channels for those
520+
who use Git and those who develop it. The server&#8217;s search functionality also
521+
allows you to find previous conversations and answers to common questions.</p>
522+
</div>
523+
</div>
511524
</div>
512525
</div>
513526
</div>
@@ -2256,7 +2269,7 @@ <h3 id="after-approval"><a class="anchor" href="#after-approval"></a>After Revie
22562269
</div>
22572270
<div id="footer">
22582271
<div id="footer-text">
2259-
Last updated 2025-06-20 18:10:42 -0700
2272+
Last updated 2025-08-29 10:28:43 -0700
22602273
</div>
22612274
</div>
22622275
</body>

RelNotes/2.52.0.adoc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Performance, Internal Implementation, Development Support etc.
3737
* Remove dependency on the_repository and other globals from the
3838
commit-graph code, and other changes unrelated to de-globaling.
3939
40+
* Discord has been added to the first contribution documentation as
41+
another way to ask for help.
42+
4043
4144
Fixes since v2.51
4245
-----------------
@@ -110,6 +113,18 @@ including security updates, are included in this release.
110113
been corrected.
111114
(merge 8f32a5a6c0 jk/fetch-check-graph-objects-fix later to maint).
112115

116+
* "git fetch" can clobber a symref that is dangling when the
117+
remote-tracking HEAD is set to auto update, which has been
118+
corrected.
119+
120+
* "git describe <blob>" misbehaves and/or crashes in some corner
121+
cases, which has been taught to exit with failure gracefully.
122+
(merge 7c10e48e81 jk/describe-blob later to maint).
123+
124+
* Manual page for "gitk" is updated with the current maintainer's
125+
name.
126+
(merge bcb20dda83 js/doc-gitk-history later to maint).
127+
113128
* Other code cleanup, docfix, build fix, etc.
114129
(merge 823d537fa7 kh/doc-git-log-markup-fix later to maint).
115130
(merge cf7efa4f33 rj/t6137-cygwin-fix later to maint).
@@ -118,3 +133,4 @@ including security updates, are included in this release.
118133
(merge 741f36c7d9 kr/clone-synopsis-fix later to maint).
119134
(merge a60203a015 dk/t7005-editor-updates later to maint).
120135
(merge 7d4a5fef7d ds/doc-count-objects-fix later to maint).
136+
(merge 16684b6fae ps/reftable-libgit2-cleanup later to maint).

gitk.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,16 +163,16 @@ used by default. If '$XDG_CONFIG_HOME' is not set it defaults to
163163

164164
History
165165
-------
166-
Gitk was the first graphical repository browser. It's written in
167-
tcl/tk.
166+
Gitk was the first graphical repository browser, written by
167+
Paul Mackerras in Tcl/Tk.
168168
169169
'gitk' is actually maintained as an independent project, but stable
170170
versions are distributed as part of the Git suite for the convenience
171171
of end users.
172172
173-
gitk-git/ comes from Paul Mackerras's gitk project:
173+
`gitk-git/` comes from Johannes Sixt's gitk project:
174174
175-
git://ozlabs.org/~paulus/gitk
175+
https://github.com/j6t/gitk
176176
177177
SEE ALSO
178178
--------

gitk.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -701,20 +701,20 @@ <h2 id="_files">Files</h2>
701701
<h2 id="_history">History</h2>
702702
<div class="sectionbody">
703703
<div class="paragraph">
704-
<p>Gitk was the first graphical repository browser. It&#8217;s written in
705-
tcl/tk.</p>
704+
<p>Gitk was the first graphical repository browser, written by
705+
Paul Mackerras in Tcl/Tk.</p>
706706
</div>
707707
<div class="paragraph">
708708
<p><em>gitk</em> is actually maintained as an independent project, but stable
709709
versions are distributed as part of the Git suite for the convenience
710710
of end users.</p>
711711
</div>
712712
<div class="paragraph">
713-
<p>gitk-git/ comes from Paul Mackerras&#8217;s gitk project:</p>
713+
<p><code>gitk-git/</code> comes from Johannes Sixt&#8217;s gitk project:</p>
714714
</div>
715715
<div class="literalblock">
716716
<div class="content">
717-
<pre>git://ozlabs.org/~paulus/gitk</pre>
717+
<pre>https://github.com/j6t/gitk</pre>
718718
</div>
719719
</div>
720720
</div>
@@ -748,7 +748,7 @@ <h2 id="_git">GIT</h2>
748748
</div>
749749
<div id="footer">
750750
<div id="footer-text">
751-
Last updated 2025-06-20 18:10:42 -0700
751+
Last updated 2025-08-29 10:28:43 -0700
752752
</div>
753753
</div>
754754
</body>

0 commit comments

Comments
 (0)