2FA 사용 후 GitLab 저장소 복제 방법
일반적인git 클론을 처음 실행할 때
git clone https://gitlab.com/username/project.git
그러나 그것은 효과가 없어서 나에게 이 출력을 주었다.Cloning into 'mypersonalbalance'...
remote: HTTP Basic: Access denied
remote: You must use a personal access token with 'read_repository' or 'write_repository' scope for Git over HTTP.
remote: You can generate one at https://gitlab.com/profile/personal_access_tokens
fatal: Authentication failed for 'https://gitlab.com/f.peluso/mypersonalbalance.git/'
구글을 검색해 보니 이중 요소 인증이 문제였고 다음과 같은 해결 방안을 찾았습니다.Access Tokens
;git clone https://oauth2:[email protected]/username/project.git
그중PERSONAL_ACCESS_TOKEN
은 당신이 이전에 검색한 영패입니다.기트랩은 2FA가 활성화되면 토큰이 비밀번호와 같기 때문에 보안을 높이기 위해 여러 토큰 중 하나를 관리해 서로 다른 저장소, 디바이스, 애플리케이션과 협업할 수 있다고 설명했다.
Reference
이 문제에 관하여(2FA 사용 후 GitLab 저장소 복제 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/fpeluso/how-to-clone-a-gitlab-repository-after-enabling-2fa-6oc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)