Git 설정 확인

git 설정 확인

1 시스템 설정 확인 (system)[ | ]

  • 모든 사용자에게 적용되는 설정
git config --system -l
실행예시 (미설정)
[root@zetawiki ~]# git config --system -l
fatal: unable to read config file '/etc/gitconfig': No such file or directory
/etc/gitconfig 파일이 없음

2 사용자 설정 확인 (global)[ | ]

  • 해당 사용자에게 적용되는 설정
git config --global -l
실행예시 (미설정)
[root@zetawiki ~]# git config --global -l
fatal: unable to read config file '/root/.gitconfig': No such file or directory
/root/.gitconfig 파일이 없음

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}