-
[Git] Git config 설정 (user.name & user.email)Computer Science/Git 2022. 6. 21. 17:19반응형
Git config 설정 확인하기
$ git config --global --list $ git config --list
user name, email 설정
$ git config user.name "user 이름" $ git config user.email "user 이메일" $ git config --global user.name "user 이름" $ git config --global user.email "user 이메일"
user.name과 user.email 삭제
$ git config --unset user.name $ git config --unset user.email $ git config --unset --global user.name $ git config --unset --global user.email
반응형'Computer Science > Git' 카테고리의 다른 글
[Git] 커밋 메시지 컨벤션 (Udacity Git Commit Message Style Guide) (0) 2021.10.23 [Git] Git 계정 설정 (0) 2020.04.20 [Git] git config 설정 (0) 2019.05.29 [Git] Git 되돌리기 Reset & Revert (0) 2019.05.16 [git error] Your local changes to the following files would be overwritten by merge (0) 2018.08.20