Git
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Install using Brew:
brew install gitWhen done, to test that it installed properly you can run:
git --versionAnd which git should output /usr/local/bin/git.
Next, you can define your global Git user:
git config --global user.name "Your Name Here"
git config --global user.email "[email protected]"They will get added to your .gitconfig file found in the home folder ~/.
Last updated
Was this helpful?