이번에 정리할 내용은 GitHub(깃허브) 사용법입니다.
개발자에게 깃허브는 많은 도움이 되니까 :)
먼저 Git을 설치해보겠습니다.
1) https://gitforwindows.org/ 접속 후 Download
2) 다운받은 파일(Git 2.19.1 Setup) 실행
Next 클릭
3) 기본 경로를 사용. Next 클릭
4) 구성 요소 선택
- Addtional icons
- On the Desktop : 바탕화면에 아이콘 추가
- Windows Explorer integration
- Git Bash Here, Git GUI Here : 폴더에서 Git에 바로 연결할 수 있는 기능 추가
- Git LFS(Large File Support) : 용량이 큰 파일 지원
- Associate .git* configuration files with the default text editor : .git 형식의 파일을 기본 텍스트 편집기와 연결
- Associate .sh files to be run with Bash : Bash와 함께 실행될 sh 파일 연결
- Use a TrueType font in all console windows : 윈도우 콘솔에서 올바른 글꼴 사용여부
- Check daily for Git for Windows updates : 매일 업데이트 확인 여부
기본 옵션으로 Next 클릭
5) 시작 메뉴에 추가할 폴더를 선택(만들어진 폴더가 없을 경우 자동 생성)
Don't create a Start Menu folder를 체크하면 시작 메뉴에 추가하지 않습니다.
기본 옵션으로 Next 클릭
6) Git 편집기를 선택
Vim은 Windows용 Git의 기본 편집기로 Next 클릭
7) PATH 환경 설정
- Use Git from Git Bash only : Git Bash에서 Git command line tools만 사용 가능
- Use Git from the Windows Command Prompt : Git Bash와 Windows 명령 프롬프트(cmd)에서 Git 사용 가능
- Use Git and optional Unix tools from the Windows Command Prompt : Git과 유닉스 툴을 사용자 PC 경로에 추가해서 Git을 사용
기본 옵션으로 Next 클릭
8) HTTPS 선택
- Use the OpenSSL library : OpenSSL 라이브러리 사용
- Use the native Windows Secure Channel library : Windows 인증서 저장소를 사용하여 유효성 검사
기본 옵션으로 Next 클릭
9) 텍스트 파일의 line ending 스타일 선택
- Checkout Windows-style, commit Unix-style line endings : 체크아웃은 윈도우, 커밋은 유닉스 스타일 적용
- Checkout as-is, commit Unix-style line endings : 체크아웃은 스타일 변환없음, 커밋은 유닉스 스타일 적용
- Checkout as-is, commit as-is : 체크아웃, 커밋 스타일 변환 없음
이번 설치는 윈도우 환경이기 때문에 기본 옵션으로 Next 클릭
10) Git Bash 터미널 설정
Use MinTTY(the default terminal of MSY52) : MinTTY terminal emulator 사용
Use Windows' default console window : Windows 기본 콘솔 사용
기본 옵션으로 Next 클릭
11) 기타 옵션
- Enable file system caching : 성능 향상을 위해 파일 시스템 데이터를 메모리에 캐시
- Enable Git Credential Manager : Windows용 Git 보안 자격증명 저장소를 사용하기 위해 Git Credential Manager 활성화
- Enable symbolic links : symbolic links 사용
기본 옵션으로 Next 클릭
12) 실험 옵션(?)
- Enable experimental, built-in rebase : 기본 제공되는 rebase 사용
- Enable experimental, built-in stash : 실험적으로 내장 된 숨김 기능 사용
이 부분은 따로 체크를 하지 않아도 되는 것 같습니다. Install 클릭
13) 설치 실행
14) 설치 완료
15) 윈도우 키를 눌러서 설치된 폴더 확인
16) cmd 창을 열고(윈도우 키-실행에서 cmd 입력) 아래 명령어 입력
cd/
git version
아래와 같이 뜬다면 설치 성공!