# 깃 설치
# 전역 설정
$ git config --global user.name "Your Name"
$ git config --global user.email you@example.com
# 전역 설정을 삭제
$ git config --global --unset user.name
$ git config --global --unset user.email
# 개별 저장소의 설정을 삭제
$ git config --unset user.name
$ git config —unset user.email
# 전역 설정 확인
$ cat ~/.gitconfig
[user]
name = Your Name
email = you@example.com
참고사이트
https://coding-factory.tistory.com/245
https://www.lainyzine.com/ko/article/how-to-set-git-repository-username-and-email/
'네트워크 통신' 카테고리의 다른 글
HTTP / HTTPS / SSL / TLS (0) | 2022.12.19 |
---|---|
HTTP 개념정리 (0) | 2022.12.19 |
깃(git) - git bash 폴더 업로드 (0) | 2022.12.01 |
URI(Uniform Resource Identifier)와 URL(Uniform Resource Locator), URN(Uniform Resource Name) (0) | 2022.11.11 |
REST / REST API / REST FUL API 란 (0) | 2022.11.11 |