Skip to content

Installation of Git and Git LFS

Before using ARCitect (except for Windows) or ARC Commander, Git and Git LFS must be installed.

Download and install Git and Git LFS

Section titled Download and install Git and Git LFS
  1. Download the Git installer for Windows from https://git-scm.com.
  2. Open the installer and follow the installation instructions
  3. During the installation, make sure to include Git LFS (Large File Support)

To check, that Git and Git LFS are installed on your computer, open a new command prompt or terminal and execute the following two commands. These should display the installed version. If not, follow the installation instructions.

  1. Open a command prompt or terminal

  2. Check the installed Git version via

    Terminal window
    git --version
  3. Check the installed Git LFS version via

    Terminal window
    git-lfs --version

Git always signs “commits” with a user name and e-mail address. These are then also used by the DataHUB to associate the commits to your user account.

To add your user name and email address to the git configuration on your computer, run the following two commands in a command prompt or terminal. Make sure to replace “Your DataHUB Name” and “Your DataHUB Email Address” with your information from the DataHUB.

  1. Your name
Terminal window
git config --global user.name "Your DataHUB Name"
  1. Your email address
Terminal window
git config --global user.email "Your DataHUB Email Address"

Run this command to display your user configuration

Terminal window
git config --global --get-regexp user

Enable Git to store credentials on your computer

Section titled Enable Git to store credentials on your computer

To avoid having to type in your DataHUB credentials, you can enable to store the information (e.g. a DataHUB password or token) on your computer. This leverages the password manager of you operating system.

  1. Open a command prompt or powershell

  2. Execute the following command

    Terminal window
    git config --global credential.helper store