- git 설정 확인
1 시스템 설정 확인 (system)[ | ]
- 모든 사용자에게 적용되는 설정
Bash
Copy
git config --system -l
- 실행예시 (미설정)
Console
Copy
[root@zetawiki ~]# git config --system -l
fatal: unable to read config file '/etc/gitconfig': No such file or directory
- → /etc/gitconfig 파일이 없음
2 사용자 설정 확인 (global)[ | ]
- 해당 사용자에게 적용되는 설정
Bash
Copy
git config --global -l
- 실행예시 (미설정)
Console
Copy
[root@zetawiki ~]# git config --global -l
fatal: unable to read config file '/root/.gitconfig': No such file or directory
- → /root/.gitconfig 파일이 없음
3 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.