Download-only-one-directory

Git 명령어를 사용한 하위 디렉토리 다운로드 Clone 할 로컬 저장소 생성

  git init "로컬저장소명"
  cd "로컬저장소명"

일부 경로의 파일만 다운로드 가능하도록, sparse Checkout 을 True 로 설정

  git config core.sparseCheckout true

다운로드 할 원격 저장소 주소 설정

  git remote add -f origin "원격저장소주소"

다운로드 받길 원하는 폴더나 파일의 경로를 .git/info/sparse-checkout 파일에 기술

폴더일 경우, 자동으로 하위 폴더가 포함된다.

echo "파일및폴더경로" >> .git/info/sparse-checkout

git pull 명령어를 사용해, sparse-checkout 에 기술된 경로의 파일만 다운로드

  git pull origin main

2022

Stack

1 minute read

Introduction

Stack

less than 1 minute read

Introduction

Download-only-one-directory

less than 1 minute read

Git 명령어를 사용한 하위 디렉토리 다운로드 Clone 할 로컬 저장소 생성

Sort

3 minute read

Introduction

Tree

less than 1 minute read

Introduction

Mutex library on C++

less than 1 minute read

#include <iostream> #include <thread> #include <chrono> #include <mutex> #include <atomic> #include <string.h>

TODO

less than 1 minute read

how to costom github blog using jekyll

Welcome to Jekyll!

less than 1 minute read

You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different wa...

Back to top ↑