기타

[Tools] mac os 에 xcode 없이 git 사용하기

S0PH1A 2019. 2. 9. 15:01
반응형
[Tools] Mac osx 에 xcode 없이 git 사용하기


  1. Git-scm 에서Max OS X버전 다운

  1. .pkg 실행하여 git 설치 완료

  1. terminal에 git을 입력해보면 xcode를 설치하라는 메세지가 뜬다.
$ git
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.


  1. xcode를 무시하기 위해 환경변수에 git을 추가해 준다. terminal에 아래와 같이 입력해 주면 된다.
$ echo "PATH=/usr/local/git/bin:\$PATH" >> ~/.bash_profile

$ source ~/.bash_profile

  1. 이제 git 또는 git version 등 git 명령어를 입력해보면 정상적으로 git 이 실행 됨을 볼수 있다. 
$ git version
git version 2.20.1










반응형