github 특정 폴더 clone

Jeong·2022년 5월 10일
0

어느 repository에 있는 특정 폴더 하나만 clone하고 싶을 때!!

  1. 원하는 곳으로 폴더 이동~
mkdir 폴더이름
cd 폴더이름
  1. .git만들어줍니당.
git init
  1. remote를 추가해줍니다
git remote add -f origin 저장소URL
  1. clone하고싶은 폴더 지정
echo 특정폴더이름 >> .git/info/sparse-checkout
  1. pull로 가져오기
git pull origin main

끝!! 간단하죵?

profile
화이팅!!

0개의 댓글