How to configure git Username and Email

This is one I keep forgetting, how do you configure your git username and email on Linux/WSL?

This is not to be confused with any sort of login information, it is just used to provide information to your interactions with git.

$ git config --global user.name "Your Name" 
$ git config --global user.email "youremail@yourdomain.com"