push token 오류가 발생하여 해결한 과정을 기록하기 위해 작성
1. 제어판 - 자격 증명 관리자에서 git:https://github.com 삭제
2. github settings -> developer settings -> personal access tokens -> generate new token (모든권한 체크)
3. token 복사
4. 터미널에서 user 정보 입력
- $ git config --global user.name "username"
- $ git config --global user.email "email@email.com"
5. git commit 후 git push를 하면
- $ Username for https://github.com : sungwookoo
- $ Password for https://github.com/sungwookoo : 토큰
'Git' 카테고리의 다른 글
[Git] 편집기에서 Git 작업 시 패스워드(토큰) 기억하기 (0) | 2024.07.03 |
---|---|
[Git] 이미 올린 Pull Request (PR) 수정 어떻게 할까? (0) | 2023.10.19 |
[Git] 실수로 작업 전 브랜치 생성(체크아웃)을 하지 않았을 때 (0) | 2023.09.26 |
[Git] github - README.md 마크다운 (markdown) 작성법 (0) | 2022.04.27 |