Git 사용자와 이메일 정보 확인하기
[user.name](<http://user.name>) 확인하기
git config user.name
[user.email](<http://user.email>) 확인하기
git config user.email
Global로 Git 사용자와 이메일 정보 설정하기
현재 시스템의 모든 Git 작업에 사용할 사용자 이름(user.name)과 이메일(user.email)을 설정하고자 한다면, global옵션을 사용해 git config 명령어를 실행
git config --global user.name "Your Name"
git config --global user.email you@example.com
아니면, ~/.gitconfig 에 다음 내용을 추가해도 됨: cat ~/.gitconfig 으로 확인(linux기준).
[user]
name = Your Name
email = you@example.com
Global 사용자 및 이메일 삭제하기.
$ git config --global --unset user.name
$ git config --global --unset user.email
저장소 별로 Git 사용자와 이메일 정보 설정하기
저장소 디렉터리에서 --global 없이 git config를 사용하면 해당 디렉터리(저장소) 전용 설정을 추가할 수 있습니다.
git config user.name "dsaint31"
git config user.email dsaint31@gmail.com
- 저장소 별로 저장되며 global 옵션으로 설정한 정보보다 우선적으로 적용됨.
기타
commit 당시 author설정이 없는 경우 방지하기.
사용자 이름(user.name)과 이메일(user.email)이 설정되어있지 않을 때 commit 을 할 수 없도록 설정
$ git config --global user.useConfigOnly true
Reference
Git 최초 설정: 사용자 이름과 이메일 설정하는 방법
GitHub 멀티 어카운트를 사용할 때 유용한 Git 설정
'Computer > Linux' 카테고리의 다른 글
[vim] VI : carriage return 제거하기 : CRLF → LF (0) | 2023.07.14 |
---|---|
[Linux] vi (or vim) 사용법 정리 (0) | 2023.03.21 |
[Linux] Network Setting (0) | 2023.02.07 |
[Linux] 화면 캡쳐 단축키 (0) | 2023.01.30 |
[Linux] Debian 계열 패키지 관리 툴: apt, apt-get (0) | 2023.01.26 |