Skip to content

Commit 14c733b

Browse files
authored
Merge pull request astaxie#1096 from shuuji3/fix-github-spelling
Replace the spelling of `github` and `Github` with `GitHub`
2 parents a1b4e8b + 02bf9fc commit 14c733b

Some content is hidden

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

50 files changed

+3675
-3675
lines changed

de/01.2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ Um die Anwendung zu kompilieren, müssen wir zurück in das Verzeichnis, in welc
9292

9393
## Installation von Paketen Dritter (Remote Packages)
9494

95-
Go umfasst ein Werkzeug zum Installieren von Remote Packages, also Paketen die von anderen Programmierern erstellt wurden. Mit dem Befehl `go get` kannst Du diese für die eigene Nutzung installieren. Es unterstützt die meisten Open Source Communities wie Github, Google Code, Bitbucket und Launchpad.
95+
Go umfasst ein Werkzeug zum Installieren von Remote Packages, also Paketen die von anderen Programmierern erstellt wurden. Mit dem Befehl `go get` kannst Du diese für die eigene Nutzung installieren. Es unterstützt die meisten Open Source Communities wie GitHub, Google Code, Bitbucket und Launchpad.
9696

9797
go get github.com/astaxie/beedb
9898

9999
Du kannst `go get -u …` nutzen, um ein Remote Package zu aktualisieren. Zugleich werden auch alle benötigten Abhängigkeiten mit installiert.
100100

101-
Dieser Befehl nutzt verschiedene Versionskontrollsysteme für die verschiedenen Open Source Plattformen. So wird beispielsweise `git` für Github und `hg` für Google Code verwendet. Daher musst Du zuerst die entsprechenden Versionskontrollsysteme installieren, ehe Du `go get` nutzen kannst.
101+
Dieser Befehl nutzt verschiedene Versionskontrollsysteme für die verschiedenen Open Source Plattformen. So wird beispielsweise `git` für GitHub und `hg` für Google Code verwendet. Daher musst Du zuerst die entsprechenden Versionskontrollsysteme installieren, ehe Du `go get` nutzen kannst.
102102

103103
Nach dem Ausführen der oben gezeigten Befehle, sollte die Orderstruktur etwa so aussehen.
104104

de/01.3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Dieser Befehl löscht alle Dateien, die vom Kompiler generiert wurden, einschlie
4343
DIR.test(.exe) // Generiert von go test -c
4444
MAINFILE(.exe) // Generiert von go build MAINFILE.go
4545

46-
Überlicherweise nutze ich diese Befehle zum Säubern von Projekten, bevor ich diese auf Github hochlade. Sie sind nützlich für lokale Tests, aber nutzlos zur Versionskontrolle.
46+
Überlicherweise nutze ich diese Befehle zum Säubern von Projekten, bevor ich diese auf GitHub hochlade. Sie sind nützlich für lokale Tests, aber nutzlos zur Versionskontrolle.
4747

4848
## go fmt und gofmt
4949

@@ -56,10 +56,10 @@ Wir nutzen üblicherweise `gofmt -w` statt `go fmt`. Somit wird Deine Quellcoded
5656

5757
## go get
5858

59-
Dieser Befehl ermöglicht es, Remote Packages herunterzuladen. Bisher untersützt es Bitbucket, Github, Google Code und Launchpad. Es geschehen zwei Dinge, nachdem wir den Befehl ausgeführt haben. Als erstes lädt Go den Quellcode herunter und führt danach `go install` aus. Bevor Du `go get` nutzt, solltest Du vorher die benötigten Versionskontrollsysteme herunterladen.
59+
Dieser Befehl ermöglicht es, Remote Packages herunterzuladen. Bisher untersützt es Bitbucket, GitHub, Google Code und Launchpad. Es geschehen zwei Dinge, nachdem wir den Befehl ausgeführt haben. Als erstes lädt Go den Quellcode herunter und führt danach `go install` aus. Bevor Du `go get` nutzt, solltest Du vorher die benötigten Versionskontrollsysteme herunterladen.
6060

6161
BitBucket (Mercurial und Git)
62-
Github (Git)
62+
GitHub (Git)
6363
Google Code (Git, Mercurial, Subversion)
6464
Launchpad (Bazaar)
6565

de/12.3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ When our web application is finally production ready, what are the steps necessa
44

55
## Daemons
66

7-
Currently, Go programs cannot cannot be run as daemon processes (for additional information, see the open issue on github [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
7+
Currently, Go programs cannot cannot be run as daemon processes (for additional information, see the open issue on GitHub [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
88

99
We can, however, see many attempts at implementing daemons online, such as in the two following ways;
1010

de/14.4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ OAuth and OAuth 2 are currently two of the most popular authentication methods.
5656

5757
github.com/bradrydzewski/go.auth
5858

59-
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our Github credentials:
59+
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our GitHub credentials:
6060

6161
1. Let's add some routes
6262

@@ -147,7 +147,7 @@ After clicking "Authorize app", the following screen appears:
147147

148148
![](images/14.4.github3.png?raw=true)
149149

150-
Figure 14.6 authorized Github information gets displayed after the login page
150+
Figure 14.6 authorized GitHub information gets displayed after the login page
151151

152152
## Custom authentication
153153

en/01.2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ To compile this application, you need to switch to the application directory, wh
9595

9696
## Install remote packages
9797

98-
Go has a tool for installing remote packages, which is a command called `go get`. It supports most open source communities, including Github, Google Code, BitBucket, and Launchpad.
98+
Go has a tool for installing remote packages, which is a command called `go get`. It supports most open source communities, including GitHub, Google Code, BitBucket, and Launchpad.
9999

100100
go get github.com/astaxie/beedb
101101

102102
You can use `go get -u …` to update your remote packages and it will automatically install all the dependent packages as well.
103103

104-
This tool will use different version control tools for different open source platforms. For example, `git` for Github and `hg` for Google Code. Therefore, you have to install these version control tools before you use `go get`.
104+
This tool will use different version control tools for different open source platforms. For example, `git` for GitHub and `hg` for Google Code. Therefore, you have to install these version control tools before you use `go get`.
105105

106106
After executing the above commands, the directory structure should look like following.
107107

en/01.3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ We usually use `gofmt -w` instead of `go fmt`. The latter will not rewrite your
5555

5656
## go get
5757

58-
This command is for getting remote packages. So far, it supports BitBucket, Github, Google Code and Launchpad. There are actually two things that happen after we execute this command. The first thing is that Go downloads the source code, then executes `go install`. Before you use this command, make sure you have installed all of the related tools.
58+
This command is for getting remote packages. So far, it supports BitBucket, GitHub, Google Code and Launchpad. There are actually two things that happen after we execute this command. The first thing is that Go downloads the source code, then executes `go install`. Before you use this command, make sure you have installed all of the related tools.
5959

6060
BitBucket (Mercurial Git)
61-
Github (git)
61+
GitHub (git)
6262
Google Code (Git, Mercurial, Subversion)
6363
Launchpad (Bazaar)
6464

en/02.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To mitigate all the problems that Google faced with current tools, they wrote a
2323

2424
Go was designed with concurrency in mind, please note that parallelism != concurrency, there is an [amazing post](https://blog.golang.org/concurrency-is-not-parallelism) by Rob Pike on the [golang blog](https://blog.golang.org/), you will find it there, it is worth a read.
2525

26-
Another very important change that is the concept of `GOPATH`. Gone are the days when you had to create a folder called `code` and then create workspaces for eclipse and what not. Now you have to keep one folder tree for go code which will be updated by the package manager automatically. It is also recommended to create folders with either a custom domain or the github domain, for example I created a task manager using golang so I created a set of folders
26+
Another very important change that is the concept of `GOPATH`. Gone are the days when you had to create a folder called `code` and then create workspaces for eclipse and what not. Now you have to keep one folder tree for go code which will be updated by the package manager automatically. It is also recommended to create folders with either a custom domain or the GitHub domain, for example I created a task manager using golang so I created a set of folders
2727
`~/go/src/github.com/thewhitetulip/Tasks`
2828

2929
**Note:** In *nix systems `~` stands for home directory, which is the windows equivalent of `C:\\Users\\username`.

en/12.3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ When our web application is finally production ready, what are the steps necessa
44

55
## Daemons
66

7-
Currently, Go programs cannot be run as daemon processes (for additional information, see the open issue on github [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
7+
Currently, Go programs cannot be run as daemon processes (for additional information, see the open issue on GitHub [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
88

99
We can, however, see many attempts at implementing daemons online, such as in the two following ways;
1010

en/14.4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ OAuth and OAuth 2 are currently two of the most popular authentication methods.
5656

5757
github.com/bradrydzewski/go.auth
5858

59-
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our Github credentials:
59+
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our GitHub credentials:
6060

6161
1. Let's add some routes
6262

@@ -147,7 +147,7 @@ After clicking "Authorize app", the following screen appears:
147147

148148
![](images/14.4.github3.png?raw=true)
149149

150-
Figure 14.6 authorized Github information gets displayed after the login page
150+
Figure 14.6 authorized GitHub information gets displayed after the login page
151151

152152
## Custom authentication
153153

es/01.2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ Para compilar esta aplicación necesitas cambiar al directorio de la aplicación
9090
```
9191
## Instala paquete remotos
9292

93-
Go tiene una herramienta para instalar paquetes remotos, es el comando llamado `go get`. Soporta la mayoría de comunidades de código libre, incluyendo Github, Google Code, BitBucket y Launchpad.
93+
Go tiene una herramienta para instalar paquetes remotos, es el comando llamado `go get`. Soporta la mayoría de comunidades de código libre, incluyendo GitHub, Google Code, BitBucket y Launchpad.
9494
```
9595
go get github.com/astaxie/beedb
9696
```
9797
Puedes usar `go get -u …` para actualizar tus paquetes remotos e incluso instalará todas sus dependencias.
9898

99-
Esta herramienta usará diferente herramientas de control de versiones para las diferentes plataformas de código libre. Por ejemplo, `git` para Github y `hg` para Google Code. Debido a esto, debes instalar estas herramientas de control de versiones antes de usar `go get`.
99+
Esta herramienta usará diferente herramientas de control de versiones para las diferentes plataformas de código libre. Por ejemplo, `git` para GitHub y `hg` para Google Code. Debido a esto, debes instalar estas herramientas de control de versiones antes de usar `go get`.
100100

101101
Después de ejecutar los comandos anteriormente descritos, la estructura de directorios debería verse de la siguiente forma:
102102
```

0 commit comments

Comments
 (0)