일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 리팩토링
- 머신러닝
- Python
- 리눅스
- 자바
- 스프링
- 스프링부트
- 쿠버네티스
- docker
- MySQL
- machine-learning
- c#
- springboot
- Spring
- AWS
- github
- 영어공부
- VOA
- 도커
- Winform
- 파이썬
- 리액트
- mybatis
- Java
- kubernetes
- Spring Boot
- react
- DataGridView
- 마이바티스
- git
Archives
- Today
- Total
보뇨 다이어리
Github private repository clone 문제 본문
반응형
BitBucket to Github 마이그레이션 작업진행중에 문제가 발생했는데 다음과 같이 진행되었다
$ git clone https://github.com/joons/task_documentations.git
Cloning into 'task_documentations'...
remote: Repository not found.
fatal: repository 'https://github.com/joons/task_documentations.git/' not found
딱 보기에도 private 이기때문에 접근이 안되는거 같은데 어떻게 하지 찾아보다가 빗버켓처럼 작성하면 되는거시와요!!
당연히 대괄호는 삭제하고 아이디와 비밀번호만 입력해주면된다
$ git clone https://[아이디]:[비밀번호]@github.com/joons/task_documentations.git
Cloning into 'task_documentations'...
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Unpacking objects: 100% (4/4), done.
출처
https://github.community/t5/How-to-use-Git-and-GitHub/Clone-private-repo/td-p/12616
반응형
'컴퓨터 관련 > 환경 정보' 카테고리의 다른 글
cannot start process the working directory ... 에러 (0) | 2020.11.04 |
---|---|
최초 PlantUML 플러그인 사용시 에러 (0) | 2019.11.12 |
AmazonS3Client 생성자 대신해서 쓰기 (0) | 2019.05.03 |
VSCode python 확장자 설치시 에러 (4) | 2018.10.13 |
MANIFEST.MF 지정된 경로를 찾을 수 없습니다 에러 (0) | 2018.07.18 |