본문 바로가기
쬬의 기초정리

[Git] git user name / email / password 기본정보 세팅하기

by Joooooooo 2023. 6. 24.
반응형

git 을 사용하다보면 password 가 만료되거나, github gitlab 의 정책이 바뀌면서 token을 기간제로 다시 입력해줘야하는 경우가 종종 일어난다. 그런경우 password 대신 token을 입력하고 세팅하면 되는데, 이런 경우와 컴퓨터를 초기화 시킨 경우 등등 git 세팅을 바꿔줘야하는 경우가 아주 많다.

 

이럴 때, 터미널을 키고 `git config --list` 를 치면 입력된 사용자 정보를 확인할 수 있다.

joeun@joeuns-MacBook-Air ~ % git config --list
credential.helper=osxkeychain
init.defaultbranch=main
user.name=[아이디/이름]
user.email=[이메일]

 

이렇게 쳤는데, user.name, user.email 등이 입력되지 않은 경우 아래와 같이 name 과 email 을 전역으로 설정해 줄 수 있다!

(password 도 이와 동일하다)

git config --global user.name "name"
git config --global user.email "email"

 

 

반응형