GitSwarm-EE 2017.2-1 Documentation


Integrate your server with GitHub

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 ID and secret key for you to use.

  1. Sign in to GitHub.

  2. 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.

  3. Select "OAuth applications" in the left menu.

  4. If you already have applications listed, switch to the "Developer applications" tab.

  5. Select "Register new application".

  6. Provide the required details.

    • Application name: This can be anything. Consider something like <Organization>'s GitLab or <Your Name>'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}'
  7. Select "Register application".

  8. You should now see a Client ID and Client Secret near the top right of the page (see screenshot). Keep this page open as you continue configuration. GitHub app

  9. 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
  10. See Initial OmniAuth Configuration for initial settings.

  11. Add the provider configuration:

    For omnibus package:

    For GitHub.com:

      gitlab_rails['omniauth_providers'] = [
        {
          "name" => "github",
          "app_id" => "YOUR_APP_ID",
          "app_secret" => "YOUR_APP_SECRET",
          "args" => { "scope" => "user:email" }
        }
      ]

    For GitHub Enterprise:

      gitlab_rails['omniauth_providers'] = [
        {
          "name" => "github",
          "app_id" => "YOUR_APP_ID",
          "app_secret" => "YOUR_APP_SECRET",
          "url" => "https://github.com/",
          "args" => { "scope" => "user:email" }
        }
      ]

    For installation from source:

    For GitHub.com:

      - { name: 'github', app_id: 'YOUR_APP_ID',
        app_secret: 'YOUR_APP_SECRET',
        args: { scope: 'user:email' } }

    For GitHub Enterprise:

      - { name: 'github', app_id: 'YOUR_APP_ID',
        app_secret: 'YOUR_APP_SECRET',
        url: "https://github.example.com/",
        args: { scope: 'user:email' } }

    Replace https://github.example.com/ with your GitHub URL.

  12. Change 'YOUR_APP_ID' to the client ID from the GitHub application page from step 7.

  13. Change 'YOUR_APP_SECRET' to the client secret from the GitHub application page from step 7.

  14. Save the configuration file and run sudo gitlab-ctl reconfigure.

  15. 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.