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 | 29 | 
| 30 | 
													Tags
													
											
												
												- 핑거스타일
 - C#
 - mysql
 - pip
 - 기타 연주
 - Visual Studio
 - label
 - OpenCV
 - nvidia-smi
 - 오류
 - ubuntu
 - 프로그래머스
 - paramiko
 - VS Code
 - Selenium
 - 채보
 - Docker
 - Python
 - SSH
 - C
 - pytorch
 - error
 - YOLO
 - pandas
 - Numpy
 - 컨테이너
 - C++
 - Linux
 - windows forms
 - JSON
 
													Archives
													
											
												
												- Today
 
- Total
 
목록Branch (1)
기계는 거짓말하지 않는다
			
			
				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-b..
				Git
				
				2022. 11. 11. 20:56