Git and GitHub

You can configure and work with Git by leveraging Environment variables. This way, you don't need to enter these details every time you want to push to or pull from a Git repository.

The following environment variables are required to connect to a Git repository. You can choose the name for this set of environment variables freely.

  • GIT_AUTHOR_EMAIL

  • GIT_AUTHOR_NAME

  • GIT_COMMITTER_EMAIL

  • GIT_COMMITTER_NAME

  • GIT_USERNAME

  • GIT_PASSWORD (see below for instructions for GitHub)

After setting up your environment variables and connecting them to your workspace, you can open a terminal by opening the Run menu and choosing Open Terminal. Run the following command:

$ git clone <repository_url>

This command will clone your git repository in a new folder using the name of the repository as the name of the folder. In order to clone into the top level directory of your workspace, the directory your terminal opens up in, you can append . to the command. This will only work if the current directory is empty.

$ git clone <repository_url> .

GitHub

In order to connect to GitHub, the GIT_PASSWORD environment variable should be a Personal Access Token (PAT). See the GitHub documentation to create a PAT with the right permissions.

After configuring and connecting the environment variables, you can open a terminal by opening the Run menu and choosing Open Terminal. Now you can clone a private repository for example. Make sure to use the web URL of the GitHub repository, starting with https://:

$ git clone https://github.com/<user>/<private-repo>.git

Last updated