Git is a version control software. It trackes the changes made to a document or a group of documents.
brew install git2. Go to github and create an account: https://github.com
Please do make sure that you replace “YOUR_GITHUB_USERNAME” by your actual username. Same with your email.
git config --global user.name “YOUR_GITHUB_USERNAME”;
git config --global user.email YOUR_EMAIL@DOMAIN.COMgit config --global credential.helper store We are doing this so that next time you want to use git, you won't be asked for your password.