Git
Git 에서 single repo의 email address 만 바꾸는 방법
BetterToday
2017. 8. 16. 23:37
728x90
Git 사용중에 global 설정이 아닌, 특정 project에서의 author name/email만 바꾸고 싶을 떄가 있다.
다음과 같이 global option을 빼고 설정하면 된다.
git config user.email "penny4860@gmail.com"
computer 전체의 global 설정을 바꿀 때는 아래와 같이 global
옵션만 추가하면 된다.
git config user.email (--global) "penny4860@gmail.com"
728x90
반응형