Mac

[Mac] 맥 개발 환경 설정 (2) - 맥 git 설치, git config 설정

냥모리 2024. 4. 13. 17:50
728x90

깃을 설치해보겠습니다.

Git

Git - Downloads

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

 

  • brew 를 이용해 깃을 다운로드 합니다.
  • -v : 버전 확인 옵션
$ brew install git
$ sudo port install git

$ git -v
  • git config 환경 설정
➜  ~ git config --global user.name 유저이름
➜  ~ git config --global user.email 깃이메일주소
➜  ~ git config --list
  • git clone
➜  ~ git clone <http 주소>

 
깃 클론으로 레포지토리를 복사해봅니다.

이 때 설치될 경로는 pwd 명령어를 이용해 미리 확인합니다.

728x90