본문 바로가기
카테고리 없음

Github Token 발급하기 + Token 인증 자동화

by Z0e 2025. 3. 27.

 

 

개요

초기 세팅 단계에서 `git clone`이나 `git pull`을 하는 경우 username과 password를 묻는 경우가 있다.

하지만 더이상 패스워드 인증은 불가하며 토큰 발급을 해주어야 한다.

Username for 'https://github.com': <username>
Password for 'https://<username>@github.com':

remote: Support for password authentication was removed on August 13, 2021.
remote: Please see https://docs.github.com/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of authentication.

 

 

Generate new token

Settings > Developer Settings > Personal access tokens > Tokens (classic) 또는 https://github.com/settings/tokens 접속하여 `Generate new token (classic)`을 선택한다.

 

https://github.com/settings/tokens/new에 접속하면 바로 생성할 수 있다.

토큰 이름과 만료일, 액세스를 설정하고 생성한다.

 

이때 생성된 토큰은 잘 적어두어 잃어버리지 않도록 한다.

 

 

Configure Github account

git config --global user.name <username>
git config --global user.password <token>

 

 

Remember Git credentials: Token 인증 자동화

인증을 계속 요구하는 경우 `libsecret`을 설치하면, 토큰을 처음 입력 후에는 다시 입력하지 않아도 된다.

https://www.softwaredeveloper.blog/git-credential-storage-libsecret

sudo apt-get install libsecret-1-0 libsecret-1-dev
cd /usr/share/doc/git/contrib/credential/libsecret
sudo make
git config --global credential.helper /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret

 

 

 

OAuth 앱에 대한 범위

 

OAuth 앱에 대한 범위 - GitHub Docs

범위를 사용하면 필요한 액세스 유형을 정확히 지정할 수 있습니다. 범위는 OAuth 토큰에 대한 액세스를 _제한_합니다. 사용자가 이미 가지고 있는 것 이상의 추가 권한은 부여하지 않습니다.

docs.github.com