본문 바로가기

개발도구 사용법/Git으로 버전관리 하기

[ git ]step1. 맥북에서 git 설치

[git사용 하는 이유]

1. 버전관리

2. 이전에 쓰던 기록으로 롤백 가능
3. 무슨작업했는지 히스토리를 남길 수 있음

 

[git 다운로드] 아래 링크에서 macOS용 다운로드& 설치 합니다.

https://git-scm.com/download/mac

 

Git - Downloading Package

Download for macOS There are several options for installing Git on macOS. Note that any non-source distributions are provided by third parties, and may not be up to date with the latest source release. Choose one of the following options for installing Git

git-scm.com

 

 


✓HomeBrew 설치오류발생 
진행중에 Homebrew(macOS용 패키지 관리 프로그램) 설치가 안되는문제가 구글검색 중 )

Error: Running Homebrew as root is extremely dangerous and no longer supported.
As Homebrew does not drop privileges on installation you would be giving all
build scripts full access to your system

 

해결책

sudo chown -R $(whoami) $(brew --prefix)/*

 

1.홈브류 설치완료

 

2.git 설치진행 

✓git 설치오류발생  - git 설치도 매끄럽게 되지않아서(오류캡쳐가 날아갔어요) 여튼  구글 검색 후 아래와 같이 입력했다.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

odeit.kr/topics/javascript-programming-and-data/lessons/3451

 

모든 설치가 완료 되었습니다.

 

 



여기까지 감사합니다.

반응형