-
[Git] git config 설정Computer Science/Git 2019. 5. 29. 19:42반응형
git config 설정 (계정 설정하기)
- Git을 설치하고 나면 Git 의 사용 환경을 적절하게 설정해주어야만 합니다.
- 한번만 설정하면 설정한 내용은 git을 업그레이드해도 유지됩니다.
- 언제든지 명령어를 이용하여 설정을 변경할 수 있습니다.
git 설정 파일
- /etc/gitconfig 파일: 시스템의 모든 사용자와 모든 저장소에 적용되는 설정입니다. 이 파일을 읽고 쓰고 싶으면 git config --system 옵션을 사용합니다.
- ~/.gitconfig 파일: 특정 사용자에게만 적용되는 설정입니다. 이 파일을 읽고 쓰고 싶으면 git config --global 옵션을 사용합니다.
- .git /config: 이 파일은 Git 디렉토리에 있고 특정 저장소(혹은 현재 작업 중인 프로젝트)에만 적용됩니다.
계정 설정
$ git config --global user.name "이름" $ git config --global user.email "이메일"
- 프로젝트 하나에서만 변경하고 싶으면
$ git config --local user.name "이름" $ git config --local user.email "이메일"
설정 확인
- git config --list 명령을 실행하면 설정한 모든 것을 보여줍니다.
$ git config --list user.name=yunyoung1819 user.email=yunyoung1819@example.com color.status=auto color.branch=auto color.interactive=auto color.diff=auto
반응형'Computer Science > Git' 카테고리의 다른 글
[Git] 커밋 메시지 컨벤션 (Udacity Git Commit Message Style Guide) (0) 2021.10.23 [Git] Git 계정 설정 (0) 2020.04.20 [Git] Git 되돌리기 Reset & Revert (0) 2019.05.16 [git error] Your local changes to the following files would be overwritten by merge (0) 2018.08.20 Synchronize the git fork repository to the latest version (0) 2018.08.20