작성
·
391
2
안녕하세요. 제가 개발 초보라서 git 설치는 했는데 비주얼코드에서 연결하는데 문제가 있어서요.
git remote add origin여기 까지는 문제 없이 따라왔는데
git push -u origin "main" 이 코드를 넣으면
Username for 'https://github.com': 아이디
Password for 'https://아이디@github.com':
계속 이런식으로 나오는데 뭐가 잘못된건가요? ㅠㅠ...
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
fatal: Authentication failed for 'https://github.com/id/cat-jjal-maker.git/'
iMac:cat-jjal-maker-main jee$ Password for 'https://id@github.com':
bash: Password: command not found
이런 메세지가 뜹니다.
답변 3
0
Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
비밀번호 대신 Personal access token을 치시면 됩니다.
깃헙 아이디, 비밀번호 입력시
'Support for password authentication was removed on Au.. Please use a personal access token instead'
란 에러가 뜰 수 있습니다.
2021년 8월 13일부터 평문 비밀번호를 못 쓰도록 보안 업데이트가 되었기 때문인데요,
비밀번호 대신 Personal access token을 입력하면 됩니다.
아래 링크 참고하셔서 깃헙 사이트에서 토큰을 만드시고, 얘를 비밀번호처럼 이용하시면 됩니다.
메모장같은곳에 적어둬서 잊지 않도록 해주세요~
공식 문서: https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token
한글 블로그 글: https://jootc.com/p/201905122828
0
0