- Additional icons : 바탕화면에 아이콘 생성
- Windows Explorer integration : 오른쪽 마우스 클릭시 Git 연결 기능 제공
- Git LFS : 용량이 큰 파일 지원
- 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 : Git for Windows 업데이트 매일 체크
시작 메뉴에 추가할 메뉴 선택
Git에 사용할 에디터 선택
Use Git from Git Bash only : 사용자 PC의 PATH를 수정하지 않고 Git Bash에서 Git command line tools만 사용가능
Use Git from the Windows Command Prompt : 사용자의 PC의 PATH에 최소한의 Git wrappers를 추가해서 Git Bash와 Windows 명령 프롬프트에서 Git 사용가능
Use Git and optional Unix tools from the Windows Command Prompt : Git 그리고 유닉스 툴 모두 사용자 PC의 PATH에 추가해서 Git을 사용
는 Windows 툴의 find 와 sort 기능보다 우선하기 때문에 윈도우와 유닉스를 잘 알고 잇는 개발자만 사용해야할 것 같습니다
HTTPS 선택
line ending 스타일 선택
Checkout Windows-style, commit Unix-style line endings : Checkout 할때는 윈도우 스타일, Commit 할 때는 유닉스 스타일
Checkout as-is, commit Unix-style line endings : Checkout 할때는 스타일 변환 없음 , Commit 할 때는 유닉스 스타일
Checkout as-is, commit as-is : 둘다 Ending 스타일 변환 없음. 크로스 플랫폼에서는 이 옵션을 선택하지 않는 것이 좋습니다
우린 윈도우, Git은 유닉스 형식
터미널 선택
기타옵션
Enable file system cahcing : 성능향상을 위해 파일 시스템 데이터를 메모리에 캐시됩니다
Enable Git Credential Manager : Windows 용 보안 Git 자격증명 저장소를 사용하기 위해 Git Credential Manager 활성화
Enable symbolic links : symbolic links 활성화 (기존 저장소는 영향을 받지 않습니다)
실험적인 옵션
끝
+
$git config --global user.name "이름" $git config --global user.email 본인@메일주소
git Name과 Email 설정
$git config --list
설정됐는지 확인
'운영체제 > Windows' 카테고리의 다른 글
Windows PATH 환경변수 설정하기 (0) | 2021.01.21 |
---|---|
Windows Msys2 다운로드 (0) | 2021.01.21 |
Windows 10에서 ubuntu (linux termianl) 사용하기 (0) | 2020.03.15 |
Windows에서 Linux Terminal 사용하기 - Cygwin 설치, Cygwin Home 폴더 변경 (0) | 2020.03.15 |
Windows gcc, g++ 설치하기 (MinGW) (0) | 2020.03.15 |