티스토리 뷰

기본적으로 git push시 인증정보 입력이 필요합니다. 보통 username / PAT(Personal Access Token)을 입력하죠.

git push 인증 절차

git config 설정을 통해 인증정보를 저장하여 별도 인증절차 없이 push 할 수 있도록 할 수 있습니다.

git config --global credential.helper store # 인증정보 저장 설정

설정 정보는 아래와 같이 확인 가능합니다.

git config -l # 설정 목록 출력

git config -l 명령어 출력값

cat ~/.git-credentials # 인증정보 저장 파일 내용 출력

git push, 인증 절차 없이 push 완료

 

이상입니다.

 

 

댓글