까먹기 쉬운 git 명령어 모음

Minsoo, Kim·2023년 1월 19일
0

ETC

목록 보기
2/2

까먹을 때마다 꺼내볼 수 있게 자주 쓰는 git 명령어들을 정리했습니다.

$ git config --global user.name {username}
$ git config --global user.email {email}
$ git config --list
$ git config credential.helper store   # 현재 레포에 인증 정보 저장
$ git config credential.helper store --global   # 모든 레포에 인증 정보 저장

$ git submodule add {서브모듈로 등록할 레포지토리 URL}

0개의 댓글