Import projects from GitHub and login to your GitLab instance with your GitHub account.
To enable the GitHub OmniAuth provider you must register your application with GitHub. GitHub will generate an application>
Sign in to GitHub.
Navigate to your individual user settings or an organization's settings, depending on how you want the application registered. It does not matter if the application is registered as an individual or an organization - that is entirely up to you.
Select "OAuth applications" in the left menu.
If you already have applications listed, switch to the "Developer applications" tab.
Select "Register new application".
Provide the required details.
Application name: This can be anything. Consider something like "\<organization\>'s GitLab" or "\'s GitLab" or something else descriptive.
Homepage URL: The URL to your GitLab installation. 'https://gitlab.company.com'
Application description: Fill this in if you wish.
Authorization callback URL is 'http(s)://${YOUR_DOMAIN}'
Select "Register application".
You should now see a Client>
On your GitLab server, open the configuration file.
For omnibus package:
sudo editor /etc/gitlab/gitlab.rb
For installations from source:
cd /home/git/gitlab
sudo -u git -H editor config/gitlab.yml
See Initial OmniAuth Configuration for initial settings.
Add the provider configuration:
For omnibus package:
Replace https://github.example.com/ with your GitHub URL.
Change 'YOUR_APP_ID' to the client>
Change 'YOUR_APP_SECRET' to the client secret from the GitHub application page from step 7.
Save the configuration file.
Restart GitLab for the changes to take effect.
On the sign in page there should now be a GitHub icon below the regular sign in form. Click the icon to begin the authentication process. GitHub will ask the user to sign in and authorize the GitLab application. If everything goes well the user will be returned to GitLab and will be signed in.
原文链接:http://docs.gitlab.com/ee/integration/github.html#integrate-your-server-with-github