갈루아의 반서재

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