토큰을 기억하기 위해 컴퓨터에 지정된 레코드를 캐시
git config --global credential.helper <token>
캐시 레코드 삭제
git config --global --unset credential.helper
자격 증명 관리자에 개인 액세스 토큰이 저장된 것 확인
git config credential.helper
remote에 추가
git remote add origin https://<id>:<token>@github.com/<username>/<repo>