반응형
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
- 자바
- json
- list
- 이탈리아
- Eclipse
- 자바스크립트
- Button
- input
- vscode
- 테이블
- 배열
- string
- js
- Visual Studio Code
- CSS
- Array
- Maven
- table
- Java
- windows
- date
- html
- 정규식
- 인텔리제이
- 이클립스
- ArrayList
- IntelliJ
- javascript
- 문자열
- CMD
Archives
- Today
- Total
목록single-branch (1)
어제 오늘 내일
[Git] 특정 브랜치만 clone 하기 (--branch, --single-branch)
특정 브랜치만 클론하기Git에서 특정 브랜치만 클론하려면 --branch 옵션과 --single-branch 옵션을 함께 사용하면 됩니다.git clone --branch --single-branch 예제 예를 들어, feature-branch라는 브랜치만 클론하려면 다음과 같이 실행합니다.git clone --branch feature-branch --single-branch https://github.com/user/repo.git 이 명령어는 다음을 수행합니다:--branch: 특정 브랜치(feature-branch)를 선택--single-branch: 선택한 브랜치만 클론 (다른 브랜치 정보는 받지 않음)https://github.com/user/repo.git: 원격 저장소 URL이렇게 하면..
IT/Git
2025. 3. 8. 21:31