You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by gi...@apache.org on 2018/11/13 06:31:14 UTC

[incubator-netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 172

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new ea4c48c  Automated site publishing by Jenkins build 172
ea4c48c is described below

commit ea4c48ce3513ae1532fbb05050bed193c6219155
Author: jenkins <bu...@apache.org>
AuthorDate: Tue Nov 13 06:31:13 2018 +0000

    Automated site publishing by Jenkins build 172
---
 content/download/index.html        |  4 ++--
 content/participate/submit-pr.html | 16 ++++++++--------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/content/download/index.html b/content/download/index.html
index 25b069d..46fff19 100644
--- a/content/download/index.html
+++ b/content/download/index.html
@@ -171,7 +171,7 @@
 <div class="olist arabic">
 <ol class="arabic">
 <li>
-<p>Clone the <a href="https://github.com/apache/incubator-netbeans" class="bare">https://github.com/apache/incubator-netbeans</a> github repository.</p>
+<p>Clone the <a href="https://github.com/apache/incubator-netbeans" class="bare">https://github.com/apache/incubator-netbeans</a> GitHub repository.</p>
 </li>
 <li>
 <p>Install Oracle&#8217;s Java 8 or Open JDK v8.</p>
@@ -224,7 +224,7 @@
 <p><a href="https://github.com/apache/incubator-netbeans-website-cleanup" class="bare">https://github.com/apache/incubator-netbeans-website-cleanup</a> A repository used to clean up existing documentation from <a href="http://netbeans.org" class="bare">http://netbeans.org</a></p>
 </li>
 <li>
-<p>Emilian Bold has converted the previous Mercurial repository (<a href="http://hg.netbeans.org" class="bare">http://hg.netbeans.org</a>) to git, for historical reference, and has kindly uploaded it to github at <a href="https://github.com/emilianbold/netbeans-releases" class="bare">https://github.com/emilianbold/netbeans-releases</a>. Thanks, Emilian!</p>
+<p>Emilian Bold has converted the previous Mercurial repository (<a href="http://hg.netbeans.org" class="bare">http://hg.netbeans.org</a>) to git, for historical reference, and has kindly uploaded it to GitHub at <a href="https://github.com/emilianbold/netbeans-releases" class="bare">https://github.com/emilianbold/netbeans-releases</a>. Thanks, Emilian!</p>
 </li>
 </ul>
 </div>
diff --git a/content/participate/submit-pr.html b/content/participate/submit-pr.html
index ad62b78..a2e5f92 100644
--- a/content/participate/submit-pr.html
+++ b/content/participate/submit-pr.html
@@ -82,7 +82,7 @@
 <ul class="sectlevel1">
 <li><a href="#_contributing_code">Contributing Code</a></li>
 <li><a href="#_learn_to_run_and_debug_netbeans_ide_or_platform_applications">Learn to run and debug NetBeans IDE or Platform applications</a></li>
-<li><a href="#_contributing_to_apache_netbeans_in_github">Contributing to Apache NetBeans in github</a>
+<li><a href="#_contributing_to_apache_netbeans_in_github">Contributing to Apache NetBeans in GitHub</a>
 <ul class="sectlevel2">
 <li><a href="#_boostraping_do_this_once">Boostraping (do this once)</a></li>
 <li><a href="#_branching_and_submitting_pull_requests">Branching and submitting pull requests</a></li>
@@ -192,20 +192,20 @@ If the commit fixes a reported issue, the summary line should hold the issue num
 </div>
 </div>
 <div class="sect1">
-<h2 id="_contributing_to_apache_netbeans_in_github">Contributing to Apache NetBeans in github</h2>
+<h2 id="_contributing_to_apache_netbeans_in_github">Contributing to Apache NetBeans in GitHub</h2>
 <div class="sectionbody">
 <div class="sect2">
 <h3 id="_boostraping_do_this_once">Boostraping (do this once)</h3>
 <div class="paragraph">
-<p>Since you don&#8217;t have write permissions to the github apache mirror, you need to
-fork <a href="https://github.com/apache/incubator-netbeans" class="bare">https://github.com/apache/incubator-netbeans</a> in github, this is done using
-the "fork" button on the top right of the github page.</p>
+<p>Since you don&#8217;t have write permissions to the GitHub apache mirror, you need to
+fork <a href="https://github.com/apache/incubator-netbeans" class="bare">https://github.com/apache/incubator-netbeans</a> in GitHub, this is done using
+the "fork" button on the top right of the GitHub page.</p>
 </div>
 <div class="paragraph">
 <p>You then need to clone the forked repository in your computer.</p>
 </div>
 <div class="paragraph">
-<p>Finally, in your computer, you need to setup your name and email in github.
+<p>Finally, in your computer, you need to setup your name and email in GitHub.
 This will also help git to rebase in order to fulfill its task.</p>
 </div>
 <div class="listingblock">
@@ -250,7 +250,7 @@ git config --global user.email "john@doe.org"</code></pre>
 <div class="ulist">
 <ul>
 <li>
-<p>Use <code>git push -u origin mybranch</code> to create and push the <code>mybranch</code> branch in your github fork.</p>
+<p>Use <code>git push -u origin mybranch</code> to create and push the <code>mybranch</code> branch in your GitHub fork.</p>
 </li>
 <li>
 <p>Use <code>git push origin mybranch</code> afterwards.</p>
@@ -261,7 +261,7 @@ git config --global user.email "john@doe.org"</code></pre>
 <p>If you have submitted many different commits it&#8217;s a good idea to squash them together. See <a href="#squash">squashing commits on pull requests</a> for help on this.</p>
 </div>
 <div class="paragraph">
-<p>Once your code is ready to review create a <strong>pull request</strong> using the github interface. See <a href="https://help.github.com/articles/creating-a-pull-request/" class="bare">https://help.github.com/articles/creating-a-pull-request/</a> for help.</p>
+<p>Once your code is ready to review create a <strong>pull request</strong> using the GitHub interface. See <a href="https://help.github.com/articles/creating-a-pull-request/" class="bare">https://help.github.com/articles/creating-a-pull-request/</a> for help.</p>
 </div>
 </div>
 <div class="sect2">


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists