Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Orion/How Tos/Cloning repository from github

You have an account on GitHub and want use Orion to contribute to a GitHub repository?

Cloning a Git repository hosted on GitHub

  1. Obtain a repository URI. Go to GitHub repository home page and copy the repository URI, typically SSH and HTTP give read and write access and Git protocol gives you read-only access.
    GithubURI.PNG

  2. If you are using a secure connection you might be required to configure your public key. On GitHub go to Account Settings -> SSH Public Keys and choose Add another public key
    GithubAddPublicKey.PNG

  3. Copy contents of your public key file in the Key field. Typically you can find your public/private keys in .ssh directory in your home directory on your file system
  4. Confirm adding public key by selecting Add key button
  5. Login to Orion and go to Repositories link
    Orion Repostories link.png

  6. Choose Clone button and copy the your Git repository URI into the Repository URL input
    Clone git repository dialog.png

  7. If you are using secure protocol input your credentials
    Ssh username - username (optional if you are authenticating via private key)
    Ssh password - password (optional if you are authenticating via private key)
    Private key - private key (optional if you are authenticating via user/password) to match the public key uploaded on GitHub. Typically you can find your public/private keys in .ssh directory in your home directory on your file system, please copy the contents of the private key file with any whitespace it contains
    Passphrase - passphrase if required by your private key
  8. Confirm credentials and wait until your repository is cloned

For more information about Orion git client go to Orion/How Tos/Working with git

Back to the top