Skip to content

Latest commit

 

History

History
113 lines (69 loc) · 4.77 KB

22.02.27_맥북에소스트리설치후프로젝트관리.md

File metadata and controls

113 lines (69 loc) · 4.77 KB

22.02.27_맥북에소스트리설치후프로젝트관리하기

목차

01.소스트리 설치

02.저장소 연결하기

03.push하면서 나오는 에러

  • 토큰 설정해주기

01.소스트리 설치

소스트리설치 사이트

image-20220227152827276

  • Download for Mac OS X 클릭

image-20220227152916793

  • download 클릭해서 설치 파일을 받는다.

image-20220227153001137

  • 설치된 소스트리를 클릭

image-20220227153349634

  • 위와 같이 나오면 어짜피 우리는 아직 저런 클라우드와 서버는 하지 않을것이기 때문에 계속 클릭

image-20220227153447127

  • 완료를 하면 아래와 같은 창이 나옴

image-20220227153528677

  • 원하는 곳을 원격으로 해서 연결하면 된다.

02.저장소 연결하기

image-20220227154112879

  • 원하는 저장소와 목적지 경로를 설정해주면된다.

  • 그리고 클론을 클릭해주면 연결됨

image-20220227154151740

image-20220227154409978

  • 위와 같이 나오면 제대로 나온것

03.push하면서 나오는 에러

Pushing to https://github.com/3DPIT/study.git
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/3DPIT/study.git/'
Pushing to https://github.com/3DPIT/study.git
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/3DPIT/study.git/'
Pushing to https://github.com/3DPIT/study.git
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/3DPIT/study.git/'
Pushing to https://github.com/3DPIT/study.git
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/3DPIT/study.git/'
Completed with errors, see above
  • 이게 예전까지 잘되는게 왜 갑자기 이렇게 설정이 복잡하지 할수 있는데
  • 8월 13일 기점으로 유저 이름과 비밀번호로 인증에서
    • 개인 인증 토큰을 비밀번호 대신 해야 제대로 푸쉬가됨
https://github.com/settings/tokens
  • 위의 링크를 로그인상태에서 접속한다.

image-20220227164443956

image-20220227165713708

  • 적절히 용도와 만료기간 설정하고 생성
  • repo를 선택해야 리포지토리 관리 용도로 쓸수있음

image-20220227170313468

  • 오른쪽 끝에 설정을 클릭한다.

image-20220227170143940

  • 그리고 원격 부분을 클릭해서
  • 해당 리포지토리 연결 링크에
  • 아래와 같이 토큰을 @앞에넣어주면됨

image-20220227170131083

  • 위와 같이 설정하고 확인을 누르면 제대로 푸쉬가 되는것을 확인 할 수 있음