Git
Installation
brew install gitConfiguration
Setting Git username and email for every repository on your computer
git config --global user.name "Your Name Here"
git config --global user.email "your_email@youremail.com"Setting Git username and email for a single repository
git config user.name "Your Name Here"
git config user.email "your_email@youremail.com"Last updated