git config
이것은 최초 1회 실행만 하는 설정 명령어
//git commit에 사용될 username
git config --global user.name "깃닉네임 or 내이름"
//git commit에 사용될 email
git config --global user.email "깃에서 쓰는 이메일 주소"
//설정한 내용을 확인할수 있다.
git config --list
'Git' 카테고리의 다른 글
git remote (0) | 2020.10.30 |
---|---|
git commit (0) | 2020.10.30 |
git add (0) | 2020.10.30 |
git status (0) | 2020.10.30 |
git init (0) | 2020.10.30 |