프로그래밍 Programming
Git 설치 및 사용준비
문장전달자
2016. 10. 13. 11:37
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