해당 repo에만 적용
$ git config user.name="profile name" $ git config user.email="github email"
전역
$ git config --global user.name="profile name" $ git config --global user.email="github email"
캐시에 저장하기(commit 마다 아이디, 비밀번호 물어보지 않음)
$ git config --global credential.helper store
캐시에 저장한 내용 Timeout 설정(초 단위) - 예제는 한시간(3600초 = 1시간)
$ git config --global credential.helper 'cache --timeout 3600'