git config by workspace
- 보통 global로 설정된 user.name, uesr.email이 있을 것이다
- 깃 프로젝트 워크스페이스 별로 다른 계정을 사용해보자
1 | # git config user.name {username} |
- 글로벌로 설정된 이름, 이메일 대신, 다른 계정을 사용하고 싶은 워크스페이스로 가서 위 명령을 실행한다
참고
- https://stackoverflow.com/questions/8801729/is-it-possible-to-have-different-git-configuration-for-different-projects
- 경로 패턴에 따라 config를 다르게 구성하는 방법도 있다
git config by workspace
https://chinsun9.github.io/2021/07/30/git-config-by-workspace/