본문 바로가기

Github

깃(Git) 설치하기 (윈도우)

 

1.깃 설치 페이지 주소

 

https://git-scm.com/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

 

2. 깃 다운받기 (Windows 클릭)

 

자신의 윈도우와 맞는 것 선택 (대부분은 64bit)

 

확인방법 : 내 PC 아이콘에 마우스 우 클릭 -> 속성 메뉴 선택 -> 화면의 장치 사양 부분의 시스템 종류에 표시

                                                                                   (64비트 = x64     /    32비트 = x86)

3. 깃 설치

다운 받은 후 계속 Next 클릭

 

기본 에디터로 Vim 선택

 

체크아웃시에는 윈도우 스타일, 커밋시에는 유닉스 스타일 적용

 

MinTTY termianl emulator 사용 (Git bash  기본 터미널 사용)

 

나머지 Next 클릭 후 설치 완료

특정 폴더에서 우클릭시에도 Git Bash를 실행 가능

 

4. 깃 버전 확인(Git Bash)

 

1) git --version

zxgzx@DESKTOP-7L78B9F MINGW64 ~/Desktop
$ git --version
git version 2.33.1.windows.1

 

2) 깃(Git) 사용자 등록

 

git config --global user.name "이름"
git config --global user.email "깃 로그인 아이디"

 

3) 확인

 

git config --list

zxgzx@DESKTOP-7L78B9F MINGW64 ~/Desktop
$ git config --list
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
http.sslbackend=openssl
http.sslcainfo=D:/Git/mingw64/ssl/certs/ca-bundle.crt
core.autocrlf=true
core.fscache=true
core.symlinks=false
pull.rebase=false
credential.helper=manager-core
credential.https://dev.azure.com.usehttppath=true
init.defaultbranch=master
user.email=..
user.name=..
uer.name=..

깃 설치는 여기까지!!

다음은 깃(Git) 사용법과 , 깃허브(Github) 가입을 포스팅하겠습니다