You only have to do this once per machine.
In order to track changes and attribute them to the correct user, we need to tell Git your name and email address. Open the shell on your computer. From there, type the following commands (replace the relevant parts with your own information):
git config --global user.name 'Benjamin Soltoff'
git config --global user.email 'ben@bensoltoff.com'
You will not see any output from these commands. To ensure the changes were made, run git config --global --list
.
This work is licensed under the CC BY-NC 4.0 Creative Commons License.