Data Engineering/GitHub

[Git] git clone 및 업로드 시 access token 하는 법 기록

쟈누이 2022. 3. 3. 08:55
반응형

 

1. 원인


2021년 8월 부로 git 의 로그인 정책이 변경되었으므로

해당 사항을 기록해서 추후 써먹고자 한다.

 

 

 

 

 

2. 방법


https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token

 

Creating a personal access token - GitHub Docs

Note: If you use GitHub CLI to authenticate to GitHub on the command line, you can skip generating a personal access token and authenticate via the web browser instead. For more information about authenticating with GitHub CLI, see gh auth login. Personal

docs.github.com

--> 위 링크를 참고해서 진행하면 매우 편하다

 

크게 요약하자면 아래와 같다.

 

1 ) 토큰을 생성하여 개인만이 알 수 있는 경로에 저장하고

 

2) 클론시 아래와 같이 뜨면 비밀번호 대신 token 을 입력하는 것이다.

$ git clone https://github.com/username/repo.git
Username: your_username
Password: your_token

 

여기서 주목해야할 점은 패스워드가 로그인 패스워드가 아닌

1번에서 생성한 token 인 것이다.

 

나의 경우에는 위와같이 하고 난 뒤

레포지토리를 clone 하여 무난하게 commit, push 를 진행했다.

 

 

---> 해당사항은 private repository 를 생성하는 경우에만 쓰이는 것 같다

 

 

 

3. 참고 링크


https://miracleground.tistory.com/entry/GitHub-%ED%86%A0%ED%81%B0-%EC%9D%B8%EC%A6%9D-%EB%A1%9C%EA%B7%B8%EC%9D%B8-%ED%95%98%EA%B8%B0-%EC%98%A4%EB%A5%98-%ED%95%B4%EA%B2%B0-remote-Support-for-password-authentication-was-removed-on-August-13-2021-Please-use-a-personal-access-token-instead

 

GitHub 토큰 인증 로그인 하기 - [오류 해결]: remote: Support for password authentication was removed on August 13, 2

오늘 알고리즘 문제를 풀고 푸쉬를 하는데 이런 오류를 만났다. remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please se..

miracleground.tistory.com

 

반응형