Git Configuration
A .gitconfig
is required to use Git as it provides an identity to the changes that you commit.
Define your git identity using the following commands in a terminal window
git config --global user.name "practicalli"
git config --global user.email github@practical.li
These commands create the following configuration in the ~/.gitconfig
file, automatically creating that file if it does not exist.