[MacOS] xcode 없이 git 사용하기

맥을 새로 설치하고 git을 설치했더니 실행할때 xcode가 필요하다는 메세지가 나옴.

xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools.


이럴 경우 아래와 같이 path를 추가해주면 해결 완료

echo "PATH=/usr/local/git/bin:\$PATH" >> ~/.bash_profile


터미널을 새로 실행시키고 git --version을 실행해보면

beansui-MacBook-Air:~ beans$ git --version

git version 2.8.1


정상 동작 확인