Step4.형상관리 도구의 설치를 수행한다.

CODEDRAGON Development/Git, PM

반응형



 

Step4.형상관리 도구의 설치를 수행한다.

 

 

Git 다운받아 해당 파일을 확인한다.

https://codedragon.tistory.com/3079

https://codedragon.tistory.com/8549

 


 

 

 

 

Git 설치를 진행한다.

다운받은 파일을 실행하고 안내에 따라 설치한다.

https://codedragon.tistory.com/3080

 


 

 

 

 

 

 

 

Git콘솔 실행 하기

https://codedragon.tistory.com/7124


 

 

 

 

 

 

 

Git 설치 관련 환경을 설정한다.

Git 설치를 완료한 이후에는 사용자 정보를 설정한다.

사용자 정보는 사용자의 이름과 e-mail 최우선으로 설정한다.

 

구분

설정방법

사용자 이름 설정

git config --global user.name "사용자 이름"

사용자 e-mail 설정

git config --global user.email "이메일 주소"

 

git config --global user.email "codedragon@tistory.com"

git config --global user.name "codedragon"

hbh1@hbh1-PC MINGW64 /c/CodeLab/gitLab/hellogit (master)

$ git config --global user.email "codedragon@tistory.com"

 

hbh1@hbh1-PC MINGW64 /c/CodeLab/gitLab/hellogit (master)

$ git config --global user.name "codedragon"

 

hbh1@hbh1-PC MINGW64 /c/CodeLab/gitLab/hellogit (master)

 

 

 

 

구분

설정방법

설정 확인

git config --list

 

git config --list

codedragon@CODEMASTER MINGW64 ~

$ 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

user.name=CODEDRAGON

user.email=codedragon@tistory.com

core.autocrlf=true

http.postbuffer=1048576000

 

codedragon@CODEMASTER MINGW64 ~

$

 

 

 



반응형

'Development > Git, PM' 카테고리의 다른 글

PI 추진방법론  (0) 2020.01.13
Redmine과 GIT 연동시 고려사항  (0) 2020.01.06
데이터 아키텍처 프레임워크  (0) 2019.12.23
OSS 배포형태  (0) 2019.12.19
JIRA  (0) 2019.12.13