IT/Git & Github

Git 설치 & 초기설정

Lyk 2021. 1. 4. 02:00
728x90
반응형

1. 구글에 git 검색 또는 아래 링크 접속

 

Git - Downloads

Downloads Mac OS X 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

git-scm.com


2. 자신의 OS에 맞는 버전 다운로드(저는 Windows)

 


 

3. 설치 과정(모드 기본 값으로 Next 했음)

4. 초기설정

이런 화면이 뜬다.

사용자 이름 등록(깃허브 계정 이름)

$ git config --global user.name "사용자이름"

 

사용자 이메일 등록(깃허브 계정 이메일)

$ git config --global user.email "사용자이메일"

 

리스트 출력해 이름과 이메일이 잘 들어갔는지 확인

$ git config --list

728x90
반응형