Notice
Recent Posts
Recent Comments
Link
투케이2K
32. (Bitbucket/Git) [Git 명령어] git config 구성 list 목록 확인 , global 전역 설정 , unset 설정 삭제 방법 본문
비트버킷 & Git
32. (Bitbucket/Git) [Git 명령어] git config 구성 list 목록 확인 , global 전역 설정 , unset 설정 삭제 방법
투케이2K 2022. 12. 23. 06:22[환경 설정]
저장소 : Bitbucket / Git
사용 목적 : 소스 코드 버전 관리 실시
[소스 코드]
# [1] : [git config 설정 확인]
$ git config --list
# [2] : [git config 설정 : global 전역 설정]
$ git config --global user.name "kwon"
$ git config --global user.email "kwon@test.com"
# [3] : [git config 삭제 : global 전역 설정]
$ git config --unset --global user.name
$ git config --unset --global user.email
반응형
'비트버킷 & Git' 카테고리의 다른 글
Comments