Skip to content

Commit d2e9e60

Browse files
authored
Merge pull request #386 from strangelookingnerd/correct_naming
Capitalize the H in GitHub
2 parents b73b7e0 + 8cc94c4 commit d2e9e60

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Github Plugin
1+
# GitHub Plugin
22

33
[![codecov](https://codecov.io/gh/jenkinsci/github-plugin/branch/master/graph/badge.svg)](https://codecov.io/gh/jenkinsci/github-plugin)
44
[![License](https://img.shields.io/github/license/jenkinsci/github-plugin.svg)](LICENSE)
55

6-
This plugin integrates Jenkins with [Github](http://github.com/)
6+
This plugin integrates Jenkins with [GitHub](http://github.com/)
77
projects.The plugin currently has three major functionalities:
88

99
- Create hyperlinks between your Jenkins projects and GitHub
@@ -17,14 +17,14 @@ projects.The plugin currently has three major functionalities:
1717

1818
## Hyperlinks between changes
1919

20-
The Github plugin decorates Jenkins "Changes" pages to create links to
21-
your Github commit and issue pages. It adds a sidebar link that links
22-
back to the Github project page.
20+
The GitHub plugin decorates Jenkins "Changes" pages to create links to
21+
your GitHub commit and issue pages. It adds a sidebar link that links
22+
back to the GitHub project page.
2323

2424
![](/docs/images/changes.png)
2525
![](/docs/images/changes-2.png)
2626

27-
When creating a job, specify that is connects to git. Under "Github
27+
When creating a job, specify that is connects to git. Under "GitHub
2828
project", put in: git@github.com:*Person*/*Project*.git Under "Source
2929
Code Management" select Git, and put in
3030
git@github.com:*Person*/*Project*.git
@@ -180,7 +180,7 @@ Additional info:
180180
Jenkins service by right clicking on Jenkins (in the services
181181
window), and hit "Restart".
182182
- Jenkins does not support passphrases for SSH keys. Therefore, if you
183-
set one while running the initial Github configuration, rerun it and
183+
set one while running the initial GitHub configuration, rerun it and
184184
don't set one.
185185

186186
## Pipeline examples

src/main/java/com/cloudbees/jenkins/GitHubWebHookCrumbExclusion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public boolean process(HttpServletRequest req, HttpServletResponse resp, FilterC
2121
if (isEmpty(pathInfo)) {
2222
return false;
2323
}
24-
// Github will not follow redirects https://github.com/isaacs/github/issues/574
24+
// GitHub will not follow redirects https://github.com/isaacs/github/issues/574
2525
pathInfo = pathInfo.endsWith("/") ? pathInfo : pathInfo + '/';
2626
if (!pathInfo.equals(getExclusionPath())) {
2727
return false;

src/main/java/com/coravy/hudson/plugins/github/GithubLinkAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import java.util.Collections;
1111

1212
/**
13-
* Add the Github Logo/Icon to the sidebar.
13+
* Add the GitHub Logo/Icon to the sidebar.
1414
*
1515
* @author <a href="mailto:stefan@coravy.com">Stefan Saasen</a>
1616
*/

src/main/java/com/coravy/hudson/plugins/github/GithubLinkAnnotator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void annotate(final GithubUrl url, final MarkupText text, final Entry change) {
5858
final String base = url.baseUrl();
5959
boolean isValid = verifyUrl(base);
6060
if (!isValid) {
61-
throw new IllegalArgumentException("The provided Github URL is not valid");
61+
throw new IllegalArgumentException("The provided GitHub URL is not valid");
6262
}
6363
for (LinkMarkup markup : MARKUPS) {
6464
markup.process(text, base);
Lines changed: 1 addition & 1 deletion
Loading

src/main/resources/org/jenkinsci/plugins/github/config/GitHubPluginConfig/config_zh_CN.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222

23-
GitHub\ Servers=Github \u670D\u52A1\u5668
24-
Add\ GitHub\ Server=\u6DFB\u52A0 Github \u670D\u52A1\u5668
23+
GitHub\ Servers=GitHub \u670D\u52A1\u5668
24+
Add\ GitHub\ Server=\u6DFB\u52A0 GitHub \u670D\u52A1\u5668
2525

2626
Re-register\ hooks\ for\ all\ jobs=\u7ED9\u6240\u6709\u4EFB\u52A1\u91CD\u65B0\u6CE8\u518C hook
2727
Scanning\ all\ items...=\u626B\u63CF\u6240\u6709\u7684\u9879\u76EE...
2828

2929
Override\ Hook\ URL=\u8986\u76D6 Hook URL
30-
Specify\ another\ hook\ URL\ for\ GitHub\ configuration=\u4E3A Github \u6307\u5B9A\u53E6\u5916\u4E00\u4E2A Hook URL
30+
Specify\ another\ hook\ URL\ for\ GitHub\ configuration=\u4E3A GitHub \u6307\u5B9A\u53E6\u5916\u4E00\u4E2A Hook URL
3131

3232
Additional\ actions=\u9644\u52A0\u52A8\u4F5C
33-
Manage\ additional\ GitHub\ actions=\u7BA1\u7406 Github \u9644\u52A0\u52A8\u4F5C
33+
Manage\ additional\ GitHub\ actions=\u7BA1\u7406 GitHub \u9644\u52A0\u52A8\u4F5C

src/main/resources/org/jenkinsci/plugins/github/config/GitHubServerConfig/config_zh_CN.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ Credentials=\u51ED\u636E
2525
Test\ connection=\u8FDE\u63A5\u6D4B\u8BD5
2626
Testing...=\u6D4B\u8BD5\u4E2D...
2727
Manage\ hooks=\u7BA1\u7406 Hook
28-
GitHub\ client\ cache\ size\ (MB)=Github \u5BA2\u6237\u7AEF\u7F13\u5B58(MB)
28+
GitHub\ client\ cache\ size\ (MB)=GitHub \u5BA2\u6237\u7AEF\u7F13\u5B58(MB)

0 commit comments

Comments
 (0)