본문 바로가기
Programming/DevOps, Tools

[Git] 로컬의 프로젝트별로 git config를 적용하고 싶을 때

by kghworks 2024. 3. 8.

로컬의 프로젝트별로 git config를 적용하고 싶을 때

cd ..
git config -l ## git config (global)

cd <프로젝트 dir>
git config -l --local ## git config (특정 프로젝트)

git config --local user.name "Your Name"
git config --local user.email "Your Email"

git config -l --local 

## 바뀌었는지 확인 (아래에서)

댓글