Instructions tested with Windows 10 64-bit and Git Bash

Install Git Bash

1. Download and install Git Bash from https://git-scm.com/download/win. Select the default options when prompted during the installation of Git Bash.

2. Go to the Start menu/screen and select the Git Bash program. The Git Bash program may be stored in the Git folder in the Start menu/screen.

3. Type the command in red to verify Git was installed.

> git --version
git version 2.28.0.windows.1

4. Configure your name and email in Git.

> git config --global user.name "First Last"
> git config --global user.email username@ucsd.edu