Skip to content

Commit f680a1d

Browse files
authored
Merge branch 'master' into advertise-bugreport
2 parents be7bf5e + e65a020 commit f680a1d

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

app/views/community/index.html.erb

+15-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
<h2> Mailing List</h2>
1313

1414
<p>
15-
Questions or comments for the Git community can be sent to the mailing list by using the email address <a href="mailto:git@vger.kernel.org">git@vger.kernel.org</a>. <strong>Bug reports for git should be sent to this mailing list.</strong>
15+
General questions or comments for the Git community can be sent to the mailing list by using the email address <a href="mailto:git@vger.kernel.org">git@vger.kernel.org</a>.
16+
</p>
17+
18+
<p>
19+
<strong>If you wish to report any possible bug for Git, please use this mailing list as well.</strong>
1620
</p>
1721

1822
<p>
@@ -79,8 +83,18 @@
7983
If you need specific help about one of the for-profit Git hosting sites, you might try their own IRC channels (such as <span class="highlight fixed">#github</span> or <span class="highlight fixed">#gitlab</span>) on the same IRC server.
8084
</p>
8185

86+
<h2> Newsletter </h2>
87+
88+
<p>
89+
There is a monthly community newsletter called <a href="https://git.github.io/rev_news/rev_news/">"Git Rev News"</a>, with <a href="https://git.github.io/rev_news/archive/">its archive</a> and <a href="https://git.github.io/rev_news/">its latest edition</a>. Information on how to subscribe can be found on the <a href="https://git.github.io/rev_news/rev_news/">dedicated webpage</a>.
90+
</p>
91+
8292
<h2> Contributing to Git </h2>
8393

8494
<p>
8595
The <a href="https://github.com/git/git/tree/master/Documentation">Documentation directory</a> in the Git source code has several files of interest to developers who are looking to help contribute. After reading the <a href="https://github.com/git/git/blob/master/Documentation/CodingGuidelines">coding guidelines</a>, you can learn <a href="/docs/SubmittingPatches">how to submit patches</a>. If you are just starting out, you can read the <a href="/docs/MyFirstContribution">My First Contribution tutorial</a>. For those looking to get more deeply involved, there is a <a href="https://github.com/git/git/blob/master/Documentation/howto/maintain-git.txt">howto for Git maintainers</a>.
8696
</p>
97+
98+
<p>
99+
The <a href="https://git.github.io/">Git Developer Pages</a> have a <a href="https://git.github.io/Hacking-Git/">Hacking Git page</a> which lists useful development resources. They also have <a href="https://git.github.io/General-Application-Information/">information</a> for people applying to work on Git as part of programs like <a href="https://www.outreachy.org/">Outreachy</a> or the <a href="https://summerofcode.withgoogle.com/">Google Summer of Code</a>.
100+
</p>

app/views/shared/ref/_guides.html.erb

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<li><%= man('gitattributes') %></li>
44
<li><%= man('gitcli', 'Command-line interface conventions') %></li>
55
<li><%= man('giteveryday', 'Everyday Git') %></li>
6+
<li><%= man('gitfaq', 'Frequently Asked Questions (FAQ)') %></li>
67
<li><%= man('gitglossary', 'Glossary') %></li>
78
<li><%= man('githooks') %></li>
89
<li><%= man('gitignore') %></li>

lib/tasks/index.rake

+3-2
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ def index_l10n_doc(filter_tags, doc_list, get_content)
6262
if categories[line]
6363
new_content = categories[line]
6464
else
65-
new_content, path = get_f_content.call(path, line)
65+
new_content, new_path = get_f_content.call(path, line)
6666
end
6767
if new_content
68-
expand!(path, new_content, get_f_content, categories)
68+
expand!(new_path, new_content, get_f_content, categories)
6969
else
7070
"\n\n[WARNING]\n====\nMissing `#{path}`\n\nSee original version for this content.\n====\n\n"
7171
end
@@ -159,6 +159,7 @@ def index_doc(filter_tags, doc_list, get_content)
159159
/^Documentation\/(
160160
SubmittingPatches |
161161
MyFirstContribution.txt |
162+
MyFirstObjectWalk.txt |
162163
(
163164
git.* |
164165
everyday |

public/images/guis/github-desktop.png

13.5 KB
Loading
25 KB
Loading

0 commit comments

Comments
 (0)