Requirements
To follow this setup, it is required to have following …
•
Homebrew
Step 1 [Install Homebrew]
1.
In Terminal, type this command to install Homebrew. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Step 2 [Install Git using Homebrew]
1.
In Terminal, type this command to install Git. brew install git
2.
Step 3 [Install SourceTree]
1.
In Terminal, type brew install --cask sourcetree
Step 4 [Install Visual Studio Code]
1.
In Terminal, type brew install --cask visual-studio-code
Step 5 [Install iTerm2]
1.
In Terminal, type brew install --cask iterm2
2.
Follow the instructions in following page
Step 6 [Configure Git]
1.
In Terminal, type
a.
git config --global user.name "{user name}"
b.
git config --global user.email "{user email}"
c.
git config --global init.defaultBranch main
d.
git config --global core.autocrlf (Windows: true / Mac: input)
e.
git config --global push.default current







