set-url 옵션으로 원격 저장소 주소를 다시 설정합니다. 원격 저장소 주소에 토큰 값을 지정하면 git push 명령을 실행할 때 인증 절차를 생략합니다. 원격 저장소 주소를 ‘https://[토큰]@github.com/[사용자명]/[원격 저장소명].git’ 형식으로 변경합니다.
administrator@vmgate:~/code/environments/production$ git remote set-url origin https://ghp_1VX****************************Y9uh4@github.com/stinky/puppet_linuxmastery.kr.git
잠깐만요 ≣
물론 토큰의 유효 기간이 만료되면 새로 토큰을 생성해야 하고 원격 저장소 주소도 재설정해야 합니다. 혹시 실수로 토큰을 저장해 두지 못했으면 맨 앞을 참고하여 토큰을 다시 생성할 수 있습니다.
이렇게 해보세요 ≣
git remote add 명령으로 원격 저장소를 지정할 때 토큰이 포함된 주소를 사용하면 주소를 재지정할 필요가 없습니다.
administrator@vmgate:~/code/environments/production$ git remote add origin https://ghp_1VX****************************Y9uh4@github.com/stinky/puppet_linuxmastery.kr.git