반응형
- 계정 설정
name 설정 | git config --global user.name "{name}" | 프로젝트 마다 다른 name 사용하려면 --global 옵션 제거 |
email 설정 | git config --global user.email {email} | 프로젝트 마다 다른 email 사용하려면 --global 옵션 제거 |
설정 확인 | git config --list |
- Git 계정 정보 저장
Credential 정보 저장1 | git config credential.helper store | 현재 레포지터리에 대해서만 영구 적용 |
Credential 정보 저장2 | git config credential.helper store --global | 모든 프로젝트에 영구 적용 |
Cache 저장 | git config credential.helper cache | 기본 15분 동안 적용 |
git config credential.helper 'cache --timeout=${time}' | time만큼 시간 제한 적용 |
반응형
'개발 > 유지보수' 카테고리의 다른 글
[Docker] <none> image 모두 삭제하기 (2) | 2021.06.15 |
---|---|
[Docker] 컨테이너에서 호스트로 나오는 방법 (0) | 2021.06.15 |
[Git] Commit 메시지 변경 방법 (0) | 2021.06.15 |
[SVN] svn: Can't convert string from 'UTF-8' to native encoding (0) | 2021.06.15 |
[Bash] bash: ls: command not found 해결방법 (0) | 2021.06.15 |