반응형
[Tools] Mac osx 에 xcode 없이 git 사용하기
- Git-scm 에서Max OS X버전 다운
- .pkg 실행하여 git 설치 완료
- 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.
- xcode를 무시하기 위해 환경변수에 git을 추가해 준다. terminal에 아래와 같이 입력해 주면 된다.
$ echo "PATH=/usr/local/git/bin:\$PATH" >> ~/.bash_profile $ source ~/.bash_profile
- 이제 git 또는 git version 등 git 명령어를 입력해보면 정상적으로 git 이 실행 됨을 볼수 있다.
$ git version git version 2.20.1
반응형
'기타' 카테고리의 다른 글
[VScode] vscode Terminal에서 virtualenv 실행방법 (2) | 2019.03.07 |
---|---|
[VSCode] 파일/폴더 안보이게 숨기는 방법 (0) | 2019.03.05 |
[Git] Markdown emoji (0) | 2019.02.28 |
[Git] 명령어 (0) | 2019.01.15 |
[Markup] 자동 마크업 파일 생성 페이지 (0) | 2019.01.14 |