728x90
반응형
1. 윈도우 Git 설치 방법
1) Git bah 설치 : https://git-scm.com/
Git
git-scm.com
2) 컴퓨터 화면 창 [Download for Windows] 클릭
3) Click here to download 클릭
4) Git-2.42.0.2-64-bit.exe 실행
[**next만 누르면 됨: 추가로 체크하거나 변경한 부분 없음]
* Windows Explorer integration (마우스 우클릭시 git bash / git GUI로 파일 열기 가능)
* Git LSF (용량 큰 파일 지원)
* Associate /git* configuration flies with the default text editor (.git파일을 기본 텍스트 편집기와 연결 가능)
* Associate /sh files to be run with Bash (.sh 파일을 GIt bash에서 바로 열기 가능)
* 기본 항목(vim) : next 클릭 / Let Gid Decide : next 클릭
* 기본으로 체크된 항목 : next 클릭 (체크 안함)
2. Git Bash 실행 : 초기 환경 설정
[환경설정 명령어]
1. $ git config --global user.name "영어이름"
2. $ git config --global user.email "깃허브가입 이메일"
[확인]
1. $ git config --list :: 제일 하단에 name / email 확인하면 끝!
반응형