# 2022.05

# 5/1 git config 계정 설정

# git 설정 확인

git config --list

# git name, email 설정

git config --global user.name 유저네임
git config --global user.email 유저이메일

# git name, email 로컬 설정

해당 폴더에만 계정 설정을 다르게 하고 싶은 경우에 사용

git config --local user.name 유저네임
git config --local user.email 유저이메일

모든 설정을 마친 후 git config --list으로 확인한다.

Last Updated: a year ago