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 최초 설정: 사용자 이름과 이메일 설정하는 방법

 

Git 사용자 이름과 이메일 설정하는 방법

Git 저장소에 커밋할 때 이름과 이메일이 기록되며, 이 이메일은 GitHub 사용자와 연결할 때도 사용됩니다. 이 글에서는 커밋에 기록되는 사용자 이름과 이메일을 설정하는 방법을 소개합니다.

www.lainyzine.com

 

GitHub 멀티 어카운트를 사용할 때 유용한 Git 설정

 

GitHub 멀티 계정 사용을 위한 설정법

이 글에서는 커밋 정보에 기록하는 사용자 정보나 계정 별로 SSH 인증하는 방법 등 GitHub 다중 계정을 사용할 때 필요한 설정을 알아봅니다.

www.lainyzine.com

 

반응형

+ Recent posts