Notice
Recent Posts
Recent Comments
Tags
- javascript 유효성체크
- javascript redirection
- jquery 바코드
- Mac Oracle
- php 캐쉬제거
- ASP.Net Core 404
- SSD 복사
- ViewBag
- 바코드 생성하기
- 404에러페이지
- 파일업로드 체크
- ViewData
- TempData
- javascript 바코드 생성
- XSS PHP
- asp.net dropdownlist
- 바코드 스캔하기
- 말줄임표시
- 파일업로드 유효성체크
- 타임피커
- 하드 마이그레이션
- asp.net Select
- 하드 윈도우 복사
- 맥 오라클설치
- jquery 바코드생성
- asp.net core Select
- django 엑셀불러오기
- 강제이동
- javascript 바코드스캔
- XSS방어
웹개발자의 기지개
[Git] git clone 할때 warning: remote HEAD refers to nonexistent ref, unable to checkout 오류날때 본문
웹개발팁
[Git] git clone 할때 warning: remote HEAD refers to nonexistent ref, unable to checkout 오류날때
http://portfolio.wonpaper.net 2023. 7. 29. 00:05
1
2
3
4
5
6
7
8
9
10
|
$ git clone works0@works.cafe24app.com:works0_ibnetworks
Cloning into 'works0_works'...
Enter passphrase for key '/c/Users/wonpa/.ssh/id_rsa':
remote: Counting objects: 1099, done.
remote: Compressing objects: 100% (904/904), done.
remote: Total 1099 (delta 182), reused 1017 (delta 154)
Receiving objects: 100% (1099/1099), 102.99 MiB | 9.25 MiB/s, done.
Resolving deltas: 100% (182/182), done.
warning: remote HEAD refers to nonexistent ref, unable to checkout
|
cs |
remote HEAD refers to nonexistent ref, unable to checkout 라고 오류메세지를 날리며, 다운이 안될때
branch명을 추가로 정확하게 덧붙여 주고 다시 시도해 보자.
git clone -b master <url> <dir>
git clone -b main <url> <dir>
참고 : https://heytech.tistory.com/289
'웹개발팁' 카테고리의 다른 글
[SSD] SSD 로 교체하고, 하드드라이브 마이그레이션하기 - 윈도우 복사 ( SSD 하드 복사 윈도우 이동) (2) | 2024.03.16 |
---|---|
[윈도우 노트북] 노트북 배터리 잔량표시 및 상세 정보 열람 (0) | 2024.02.03 |
[Edge] 엣지에서 비주얼 검색 끄기 (visual search off) (0) | 2022.07.02 |
[Youtube] Youtube API 활용하기 1 - searching , parsing (0) | 2020.12.10 |
무료 로그분석 (Free Log Analytics ), 무료 통계분석 (0) | 2020.10.14 |
Comments