HTTPS를 사용하여 저장소 복제하는 방법
팁
HTTPS 복제는 Cursor에서 Git 저장소를 시작하는 안전하고 쉬운 방법입니다.
기본 HTTPS 복제
명령 팔레트 사용
- 명령 팔레트 열기(Ctrl/Cmd + Shift + P)
- "Git: Clone" 입력
- 저장소 URL 입력
- 대상 폴더 선택
터미널 사용
# 기본 복제 명령
git clone https://github.com/username/repository.git
# 특정 폴더에 복제
git clone https://github.com/username/repository.git 내-프로젝트
인증 방법
1. 개인 액세스 토큰
- GitHub
- GitLab
# URL에 토큰 사용
git clone https://username:[email protected]/username/repository.git
# 또는 자격 증명 구성
git config --global credential.helper store
# URL에 토큰 사용
git clone https://oauth2:[email protected]/username/repository.git
# 또는 자격 증명 관리자에 저장
git config --global credential.helper cache
2. 자격 증명 관리자
# Windows
git config --global credential.helper wincred
# macOS
git config --global credential.helper osxkeychain
# Linux
git config --global credential.helper cache