본문 바로가기
SCM/Git & Github

[Git] git config

by Kor-IT 2022. 3. 21.
반응형

git config 명령어는 이름, 이메일주소 등 기본설정을 설정하는 것이다.

## git commit에 사용 될 username
git config --global user.name "your_name"

## git commit에 사용 될 email
git config --global user.email "your_email"

## 설정한 내용을 확인할 수 있다
git config --list

 

반응형

'SCM > Git & Github' 카테고리의 다른 글

[Git] Git 사용법(Git Bash)  (0) 2022.06.07
[GitBash] 기본 명령어  (1) 2022.06.07

댓글