./categories/os
macOS Git 환경 구축
설치
# Xcode Command Line Tools (git 포함) 또는 Homebrew
xcode-select --install
# 또는
brew install git
git --version
초기 설정
git config --global user.name "이름"
git config --global user.email "email@example.com"
git config --list
참고
관련 링크: https://playon.tistory.com/115
./comments