Etc
(in mac)sourcetree push오류해결법 Support for password authentication was removed. Please use a personal access token instead
solutionMan
2022. 7. 10. 12:56
반응형
source트리에서 push를 할때 아래와 같은 오류가 발생하였다.
<Support for password authentication was removed. Please use a personal access token instead ,,,,>
해결법은 의외로 간단하다.
git에서 개인 토큰을 만든후 반영하는것이었다.
개인토큰 만드는 방법은 아래블로그 링크 참고 바란다.
반영방법은 아래와같다.
sourcetree열기->우측상단 설정->원격 위 순서대로 가면 아래의 화면을 마주할수있다.
이 후
url/경로 부분에서
http:// github.com/username/repo.git에서
http:// 생성된 git 개인토큰@github.com/username/repo.git에서
보라색부분만 위 같이 수정을 해주면 정상적으로 push가 가능해진다.
반응형