diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2017-06-13 14:10:31 +0200 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2017-06-14 08:40:21 +0200 |
commit | 8fb33b8f01c3b53a16cd5e086361c85d061b4de0 (patch) | |
tree | cfda582b26139f4dccb521a4810ec2d398d4d66e /doc/administration/raketasks | |
parent | 578f460674e14b4c8ca71cda7ac5a0378b724712 (diff) | |
download | gitlab-ce-8fb33b8f01c3b53a16cd5e086361c85d061b4de0.tar.gz |
Add docs for personal access tokensdocs/personal-access-tokens
Diffstat (limited to 'doc/administration/raketasks')
-rw-r--r-- | doc/administration/raketasks/github_import.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/administration/raketasks/github_import.md b/doc/administration/raketasks/github_import.md index affb4d17861..04c70c3644e 100644 --- a/doc/administration/raketasks/github_import.md +++ b/doc/administration/raketasks/github_import.md @@ -3,7 +3,7 @@ >**Note:** > > - [Introduced][ce-10308] in GitLab 9.1. -> - You need a personal access token in order to retrieve and import GitHub +> - You need a personal access token in order to retrieve and import GitHub > projects. You can get it from: https://github.com/settings/tokens > - You also need to pass an username as the second argument to the rake task > which will become the owner of the project. @@ -19,7 +19,7 @@ bundle exec rake import:github[access_token,root,foo/bar] RAILS_ENV=production ``` In this case, `access_token` is your GitHub personal access token, `root` -is your GitLab username, and `foo/bar` is the new GitLab namespace/project that +is your GitLab username, and `foo/bar` is the new GitLab namespace/project that will get created from your GitHub project. Subgroups are also possible: `foo/foo/bar`. |