git

Git 다운로드

chanchand 2023. 1. 17. 14:49
반응형

- 다운로드 홈페이지 접속

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

homebrew를 이용하여 설치를 할 수 있다.

 

 

- homebrew 명령어를 통한 git 설치

homebrew가 없다면 설치를 해주어야 한다. 아래 명령어를 통해 설치가 되었는지 확인할 수 있다.

brew help

 

아래 명령어를 입력해 git을 설치할 수 있다.

brew install git

 

설치 완료 후 아래 명령어를 통해 설치가 잘 되었는지 확인할 수 있다.

git --version

 

git --version

 

반응형

'git' 카테고리의 다른 글

git/원격 저장소 연결 해제  (0) 2023.09.15
백준, 프로그래머스 GitHub 연동  (0) 2023.02.09
Github 업로드  (0) 2023.01.17
[Git 에러] remote: Invalid username or password.  (0) 2023.01.17
Git vs Github  (0) 2023.01.17