Skip to content

Install Git

Git must be installed and credential storage configured prior to setting up the SDE.

To install Git:

  1. Download and run the latest version of the installer:

  2. Follow the prompts to complete the installation.

  3. Verify the latest version was installed correctly:

    git --version
    
  4. Configure your user name and email:

    git config --global user.name "First Last"
    git config --global user.email "youremail@company.com"
    

Additional resources