반응형
1. git 설치 (빨간색을 제외하고, default 설치)
Git
git-scm.com
2. Git Bash 또는 Git CMD에서 이름, 이메일 설정
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
ref.
https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup
Git - First-Time Git Setup
Since Git might read the same configuration variable value from more than one file, it’s possible that you have an unexpected value for one of these values and you don’t know why. In cases like that, you can query Git as to the origin for that value, a
git-scm.com
반응형