Getting Started

1. Installing Git - Mac

brew install git

2. Configuring Git
  • add git ignore
  • configure name
  • configure email
  • to see all the git config
    git config --list

  • to get a specific config
    git config --get remote.origin.url

  • to change git config git config user.name "John Doe"