반응형
git username 및 email 변경 명령어
프로젝트 전반에 걸쳐 적용하고 싶다면 아래처럼 사용하면 된다.
git config --global user.name "이름"
git config --global user.email "이메일"
예제)
git config --global user.name "kevin"
git config --global user.email "kevin@email.com"
프로젝트 하나에서만 변경하고 싶다면 --global 옵션을 제거한다.
git config --local user.name "이름"
git config --local user.email "이메일"
예제)
git config user.name "kevin"
git config user.email "kevin@email.com"
반응형
'GIT' 카테고리의 다른 글
[GIT] git stage에 add된 파일 다시 unstage상태로 되돌리기 (0) | 2018.12.23 |
---|---|
[Git] git에 add된 파일의 변경점 확인 명령어 (staging area에 넣은 파일의 변경 확인) (0) | 2018.11.08 |
[Gir] remote url 변경 명령어 (0) | 2018.11.08 |
[Gir] git remote url 확인 명령어 (0) | 2018.11.08 |
[Git] 브랜치명 변경 명령어 (0) | 2018.11.08 |