본문 바로가기

Tip and Tech/Mac OS X

맥(Mac OS X)에서 터미널로 Git 설치하기

728x90
반응형

https://git-scm.com/

 

터미널 환경에서 간단한 명령 구문 몇 줄로 Git을 설치할 수 있다.


 

1. Homebrew 설치

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

 

2. Git 설치

# Git 설치
$ brew install git

 

3. 설치 확인

# Git 설치 버전 확인
$ git --version

 


위 내용에 보다 자세한 내용은 아래 링크를 참고하면 된다.

 

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. Homebrew Install homebrew if you don't already have it

git-scm.com

https://brew.sh/

 

Homebrew

The Missing Package Manager for macOS (or Linux).

brew.sh

 

728x90
반응형