반응형
회사 컴퓨터에 처음 세팅할 때 내 개인 이메일 주소와 닉네임으로 세팅해버린 탓에
회사 프로젝트에 commit 할 때도 내 개인 정보가 올라가는걸 뒤늦게 확인했다..
늦었지만 지금이라도 변경해야지
1. Git 사용자(user)의 이메일(email), 이름(name) 확인하기
git config user.name # 이름 확인
git config user.email # 이메일 확인
2. Git 사용자(user)의 이메일(email), 이름(name) 변경하기
git config --global user.name "이름 넣어주세요" # 이름 변경
git config --global user.email "이메일 넣어주세요" # 이메일 변경
3. Git cannot overwrite multiple values with a single value 에러가 발생한다면
git config --global --replace-all user.name "이름 넣어주세요" # 이름 변경
git config --global --replace-all user.email "이메일 넣어주세요" # 이메일 변경
--replace-all 옵션을 넣어주면 된다!
반응형
'📍ETC > 🜸 Git' 카테고리의 다른 글
git branch(깃 브랜치) 생성하기 (0) | 2022.09.26 |
---|---|
[Git/깃] GitHub 토큰 인증하기 | Support for password authentication was removed on August 13, 2021. Please use a personal access token instead (0) | 2022.02.06 |
댓글