C 언어
Cpp 언어
Kotlin
Android App
알고리즘
Git/CI/CD
[팁] Git Single Branch 작업 관련
1. Single Branch로 Clone하기
git clone <remote_address> --single-branch <remote_branch>

ex)
git clone https://gaiuszzang@github.com/myGit.git --single-branch feature/test



2. Single Branch Clone한 상태에서 Single Branch만 fetch 해오기
git remote set-branches --add <remote_name> <remote_branch>
git fetch <remote> <remote_branch>


한 후,  아래 명령어로 보면 remote branch가  추가된 것을 확인할 수 있다.
git branch -r


.