Learn & Record

git 설치, 설정 & github 가입, repository 생성 본문

Dev/etc.

git 설치, 설정 & github 가입, repository 생성

Walker_ 2024. 1. 26. 09:37

 

https://git-scm.com/ 접속

1. Download for Windows > Click here to download 

 

2. Next > 설치 (본인은 기본값으로 계속 Next 함)

 

 

3. 시작 메뉴 > Git bash 프로그램 실행

 

 

4. git 입력 > 사진처럼 명령어 나오면 설치 완료

 

 

5. git 설정

$ git config --global user.name "이름"
$ git config --global user.email "이메일"

 

6. git 설정 확인

$ git config --list

 

 7. github 접속

https://github.com/

 

8. sign in > 회원가입

 

 

9. repository > new 클릭

 - Repository name : 저장소 이름

 - Descroption : 저장소 설명 (필수 아님)

 - Public / Private : 저장소 공개 설정 (공개/비공개)

 - Add : 설명 파일, push 관련 파일 추가 설정

 

10. 제공된 Command line 참고하여 프로젝트 업로드