Git

Way around the  Git Console

Get Config information of git by running:
           git config --list             

To set your global commit name and email address run the git config command with the --global option:

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

Comments