728x90
1. Git 다운로드
https://www.git-scm.com/downloads
사용중인 운영체제에 맞는 소프트웨어를 다운로드한다.
2. 사용자 계정 생성
1 2 | $ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com | cs |
3. 기본 편집기 설정
1 | $ git config --global core.editor "C:\Program Files (x86)\Notepad++' -multiInst -nosession" | cs |
4. 현재 설정내용 확인
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | $ git config --list core.symlinks=false core.autocrlf=true core.fscache=true color.diff=auto color.status=auto color.branch=auto color.interactive=true help.format=html http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt diff.astextplain.textconv=astextplain rebase.autosquash=true credential.helper=manager user.name=John Doe user.email= $ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com core.editor=C:\Program Files (x86)\Notepad++' -multiInst -nosession | cs |
1 2 | $ git config user.name John Doe | cs |
728x90
'프로그래밍 Programming' 카테고리의 다른 글
Eclipse에서의 Git 사용 - (1) 플러그인 설치 및 저장소 생성 (0) | 2016.10.16 |
---|---|
Django queryset filter datefield not empty (0) | 2016.10.15 |
Rust 프로그래밍 - 시작하기 (Rust - Getting Started) (0) | 2016.10.08 |
Django - Error: That port is already in use. (0) | 2016.09.20 |
하스켈 리스트 (0) | 2016.07.10 |