Joseph P. Vantassel, The University of Texas at Austin
Content forthcoming.
git --version # Determine version number
git config --global user.name John Doe # Set up configuration with name
git config --global user.email jd@mail.com # Set up configuration with email
git config --list # Confirm and view changes
git help <verb> # For example: git help config
git <verb> --help # For example: git config --help