Skip to content

Commit 6035eb5

Browse files
authored
Replacing Github with GitHub. (golang-migrate#429)
* Replacing `Github` with `GitHub`. Done via: ``` $ git grep -l Github | xargs sed -i '' s/Github/GitHub/g ``` * Reverting changes to Go files.
1 parent ce34d50 commit 6035eb5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

FAQ.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
Yes, technically thats possible. We want to encourage you to contribute your driver to this respository though.
5454
The driver's functionality is dictated by migrate's interfaces. That means there should really
5555
just be one driver for a database/ source. We want to prevent a future where several drivers doing the exact same thing,
56-
just implemented a bit differently, co-exist somewhere on Github. If users have to do research first to find the
56+
just implemented a bit differently, co-exist somewhere on GitHub. If users have to do research first to find the
5757
"best" available driver for a database in order to get started, we would have failed as an open source community.
5858

5959
#### Can I mix multiple sources during a batch of migrations?
@@ -76,4 +76,4 @@ No, it is done automatically.
7676
Yes, you can use the migrate CLI in a non-Go project, but there are probably other libraries/frameworks available that offer better test and deploy integrations in that language/framework.
7777

7878
#### I have got an error `Dirty database version 1. Fix and force version`. What should I do?
79-
Keep calm and refer to [the getting started docs](GETTING_STARTED.md#forcing-your-database-version).
79+
Keep calm and refer to [the getting started docs](GETTING_STARTED.md#forcing-your-database-version).

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ Source drivers read migrations from local or remote sources. [Add a new source?]
6666

6767
* [Filesystem](source/file) - read from filesystem
6868
* [Go-Bindata](source/go_bindata) - read from embedded binary data ([jteeuwen/go-bindata](https://github.com/jteeuwen/go-bindata))
69-
* [Github](source/github) - read from remote Github repositories
70-
* [Github Enterprise](source/github_ee) - read from remote Github Enterprise repositories
69+
* [GitHub](source/github) - read from remote GitHub repositories
70+
* [GitHub Enterprise](source/github_ee) - read from remote GitHub Enterprise repositories
7171
* [Gitlab](source/gitlab) - read from remote Gitlab repositories
7272
* [AWS S3](source/aws_s3) - read from Amazon Web Services S3
7373
* [Google Cloud Storage](source/google_cloud_storage) - read from Google Cloud Platform Storage

source/github/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This driver is catered for those that want to source migrations from [github.com
77
| URL Query | WithInstance Config | Description |
88
|------------|---------------------|-------------|
99
| user | | The username of the user connecting |
10-
| personal-access-token | | An access token from Github (https://github.com/settings/tokens) |
10+
| personal-access-token | | An access token from GitHub (https://github.com/settings/tokens) |
1111
| owner | | the repo owner |
1212
| repo | | the name of the repository |
1313
| path | | path in repo to migrations |

source/github_ee/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# github ee
22

3-
## Github Enterprise Edition
3+
## GitHub Enterprise Edition
44

5-
This driver is catered for those who run Github Enterprise under private infrastructure.
5+
This driver is catered for those who run GitHub Enterprise under private infrastructure.
66

7-
The below URL scheme illustrates how to source migration files from Github Enterprise.
7+
The below URL scheme illustrates how to source migration files from GitHub Enterprise.
88

9-
Github client for Go requires API and Uploads endpoint hosts in order to create an instance of Github Enterprise Client. We're making an assumption that the API and Uploads are available under `https://api.*` and `https://uploads.*` respectively. [Github Enterprise Installation Guide](https://help.github.com/en/enterprise/2.15/admin/installation/enabling-subdomain-isolation) recommends that you enable Subdomain isolation feature.
9+
GitHub client for Go requires API and Uploads endpoint hosts in order to create an instance of GitHub Enterprise Client. We're making an assumption that the API and Uploads are available under `https://api.*` and `https://uploads.*` respectively. [GitHub Enterprise Installation Guide](https://help.github.com/en/enterprise/2.15/admin/installation/enabling-subdomain-isolation) recommends that you enable Subdomain isolation feature.
1010

1111
`github-ee://user:personal-access-token@host/owner/repo/path?verify-tls=true#ref`
1212

1313
| URL Query | WithInstance Config | Description |
1414
|------------|---------------------|-------------|
1515
| user | | The username of the user connecting |
16-
| personal-access-token | | Personal access token from your Github Enterprise instance |
16+
| personal-access-token | | Personal access token from your GitHub Enterprise instance |
1717
| owner | | the repo owner |
1818
| repo | | the name of the repository |
1919
| path | | path in repo to migrations |

0 commit comments

Comments
 (0)