[MacOS/M1] 개발 세팅
1. homebrew 설치 2. Git 2-1) git 최신 버전으로 설치 brew install -s git 2-2) 계정 설정 git config --global user.name "나의 username" git config --global user.email "나의 email" 2-3) 등록된 정보 확인 git config --list 3. iterm2 + oh my zsh iterm2는 맥의 기본 터미널을 확장한 것으로 좀 더 다양한 기능을 제공합니다. zsh은 Bourne Shell (sh)의 확장 된 버전으로 m1에는 기본으로 설정되어 있으며, oh my zsh는 가장 많이 사용하는 zsh 플러그인 프레임 워크입니다. 3-1) iterm2 설치 brew install iterm2 3-2) it..