Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- error
- JSON
- 채보
- ubuntu
- 컨테이너
- YOLO
- LIST
- 오류
- Numpy
- SSH
- OpenCV
- C
- 기타 연주
- mysql
- pip
- Visual Studio
- pytorch
- C++
- label
- paramiko
- C#
- pandas
- 프로그래머스
- Python
- Docker
- windows forms
- Selenium
- Linux
- 핑거스타일
- VS Code
Archives
- Today
- Total
기계는 거짓말하지 않는다
Git 특정 브랜치 클론 (branch clone) 본문
git clone 명령어로 특정 브랜치만 클론하고 싶을 경우
1)
git clone -b [branch_name] [remote-repository-url]
git clone --branch [branch_name] [remote-repository-url]
# ex) git clone -b sdk/8.1 https://github.com/FFmpeg/nv-codec-headers.git
2)
git clone -b [branch_name] --single-branch [remote-repository-url]
git clone --branch [branch_name] --single-branch [remote-repository-url]
# ex) git clone -b sdk/8.1 -single-branch https://github.com/FFmpeg/nv-codec-headers.git
'Git' 카테고리의 다른 글
git error: Pulling is not possible because you have unmerged files. (0) | 2023.01.13 |
---|---|
git log / git status (commit 기록 확인 / 파일 상태 확인) (0) | 2023.01.13 |
git add 오류 warning: adding embedded git (0) | 2022.10.01 |
Git push 오류: Updates were rejected because the remote contains (0) | 2022.06.23 |
Git 자주 사용되는 명령어 (생성 ~ 사용) (0) | 2021.10.05 |
Comments