게으른 나에게

맥북 git 설치법 본문

My Study

맥북 git 설치법

handbefore 2024. 10. 11. 20:36

1. 터미널 접속

 

2. Homebrew 설치 (코드입력)

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

https://brew.sh/

 

Homebrew

The Missing Package Manager for macOS (or Linux).

brew.sh

 

3.  git 설치 (코드 입력)

 brew install git

 

4. git 버전 확인

git --version

 

5. 환경설정 (유저이름 설정 / 이메일 설정)

git config --global user.name "깃허브 닉네임 혹은 이름"
git config --global user.email "github 가입 시 사용한 이메일 주소"

 

6. 사용자 정보 확인

git config --list

'My Study' 카테고리의 다른 글

[git] - remote  (0) 2024.10.26
[git] - 사용법  (3) 2024.10.11
Storage  (0) 2024.10.11
서버, Ajax  (0) 2024.10.10
server-side rendering / client-side rendering  (0) 2024.10.10