config 파일
·
깃/config
분석[core] hooksPath = hook path 지정 적용git config --local include.path [.gitconfig 파일 경로] // .gitconfig 파일 내용을 local에 적용참고 Git - git-config DocumentationWhen using the deprecated [section.subsection] syntax, changing a value will result in adding a multi-line key instead of a change, if the subsection is given with at least one uppercase character. For example when the config looks like [section.su..
git config
·
깃/config
범위깃은 다음과 같이 3가지 범위로 설정 범위를 나눈다.특징로컬(local)특정 저장소로 한정.git/config에 저장된다.전역(global)현재 사용자의 모든 저장소로 한정.gitconfig에 저장된다.시스템(system)컴퓨터의 모든 저장소와 사용자를 걸쳐서 한정/etc/gitconfig형식설정 확인git config --list값 지정git config -- 값 읽기git config 값 삭제git config -- --unset 설정이름과 메일 설정git config --global user.name "Hamp"git config --global user.email ~~~~@gamil.com참고 git config 명령어 사용법Engineering Blog by Dale Seowww.dale..