728x90
반응형
현재 설정된 상태 보기
git config -l
git config --list
user name 설정 (global)
git config --global user.name "hwan"
user email 설정 (global)
git config --global user.email "your-mail@your.domain"
확인
git config user.name
git config user.email
728x90
반응형
'Git & Github' 카테고리의 다른 글
git: git stash -p # git stash 부분적으로 하기 (0) | 2024.11.21 |
---|---|
git bisect # 오류 발생 커밋 찾기 # 이진 탐색 (0) | 2024.11.14 |
git: cherry-pick by range # cherry-pick을 범위로 가져오기 (0) | 2024.04.22 |
git&github: 내 최근 커밋 위에 pull request 올려서 테스트 (머지 X, rebase 활용하기) (0) | 2024.01.30 |
git hook: 특정 명령어 금지 시키기 (0) | 2024.01.20 |