Eclipse Che natively supports the VS Code SCM model. By default, Eclipse Che includes the native VS Code Git extension as a Source Code Management (SCM) provider.
Managing Git configuration: identity
The first thing to do before starting to use Git is to set a user name and email address. This is important because every Git commit uses this information.
-
The Visual Studio Code Git extension installed.
To configure Git identity using the Che user interface, go to in Preferences.
-
Open File > Settings > Open Preferences:
-
In the opened window, navigate to the Git section, and find:
user.name user.email
And configure the identity.
To configure Git identity using the command line, open the terminal of the Che-Theia container.
-
Navigate to the My Workspace view, and open Plugins > theia-ide… > New terminal:
-
Execute the following commands:
$ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com
Che-Theia permanently stores this information and restores it on future workspace starts.
Accessing a Git repository via HTTPS
-
Git is installed. Install Git if needed by following Getting Started - Installing Git.
To clone a repository using HTTPS:
-
Use the clone command provided by the Visual Studio Code Git extension.
Alternatively, use the native Git commands in the terminal to clone a project.
-
Navigate to destination folder using the
cdcommand. -
Use
git cloneto clone a repository:$ git clone <link>
| Self-signed SSL certificates are not supported. Use SSH keys instead. |
Accessing a Git repository via SSH
-
Personal GitHub account or other Git provider account created.
Generating an SSH key
A common SSH key that works with all Git providers is present by default. To start using it, add the public key to the Git provider.
To generate an SSH key pair that only works with a particular Git provider:
-
Run the SSH: generate key pair for particular host command.
-
After the key is generated, click the View button and copy the public key from the editor.
-
Add the public key to the Git provider.
Adding the associated public key to a repository or account on GitHub
To add the associated public key to a repository or account on GitHub:
-
Navigate to github.com.
-
Click the drop-down arrow next to the user icon in the top-right corner of the window.
-
Click Settings → SSH and GPG keys and then click the New SSH key button.
-
In the Title field, type a title for the key, and in the Key field, paste the public key copied from Che.
-
Click the Add SSH key button.
Adding the associated public key to a Git repository or account on GitLab
To add the associated public key to a Git repository or account on GitLab:
-
Navigate to gitlab.com.
-
Click the user icon in the top-right corner of the window.
-
Click Settings → SSH Keys.
-
In the Title field, type a title for the key and in the Key field, paste the public key copied from Che.
-
Click the Add key button.
Configuring GitHub OAuth
OAuth for Github allows users to clone projects using SSH addresses (git@) and push to repositories.
To enable automatic SSH key upload to GitHub for users:
-
On github.com, click your user icon (top right).
-
Go to Settings > Developer settings > OAuth Apps.
-
Click the Register a new application button.
-
In the Application name field, enter, for example,
Eclipse Che. -
In the Homepage URL field, enter
http://$\{CHE_HOST}:$\{CHE_PORT}. -
In the Authorization callback URL field, enter
http://$\{CHE_HOST}:$\{CHE_PORT}/api/oauth/callback.
-
On OpenShift or Kubernetes, update the deployment configuration (see OpenShift configuration).
CHE_OAUTH_GITHUB_CLIENTID=<your-github-client-id> CHE_OAUTH_GITHUB_CLIENTSECRET=<your-github-secret>
|
Managing pull requests using the GitHub PR plug-in
To manage GitHub pull requests, the VS Code GitHub Pull Request plug-in is available in the list of plug-ins of the workspace.
Using the GitHub Pull Requests plug-in
-
Authenticate by running the GitHub Pull Requests: Manually Provide Authentication Response command and paste the GitHub token.
-
Select the repository permissions when generating the token.
Creating a new pull request
-
Open the GitHub repository. To be able to execute remote operations, the repository must have a remote with an SSH URL.
-
Checkout a new branch and make changes that you want to publish.
-
Run the GitHub Pull Requests: Create Pull Request command.

