본문 바로가기
DevTool

[git] system global local 차이점

by matters_ 2023. 3. 15.

git system global local 차이점

system

  • 해당 파일 시스템이 있는 모든 사용자와 모든 저장소에 적용되는 설정 파일
  • /etc/gitconfig 에 저장

global

  • 해당 사용자에게만 적용되는 설정파일 ex) 같은 linux user
  • ~/.giconfig 에 저장

local

  • 해당 저장소에만 적용
  • .git/config 에 저장
  • git commend default operation 

 

중복된 옵션이 있다면 local, global, system 순서대로 덮어쓴다.

ex) .git/config와 /etc/gitconfig에 같은 옵션이 들어있다면 .git/config에 있는 옵션을 사용한다.  

댓글