Added medium syndication metadata

This commit is contained in:
Brandon Rozek 2023-02-18 13:12:02 -05:00
parent 79329aae66
commit 387dd491b1
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
30 changed files with 175 additions and 134 deletions

View file

@ -1,10 +1,12 @@
---
title: "Git Partial Clones"
date: 2022-02-07T17:07:08-05:00
date: 2022-02-07 17:07:08-05:00
draft: false
tags: ["Git"]
math: false
medium_enabled: true
medium_post_id: 95d4bd60af72
tags:
- Git
title: Git Partial Clones
---
I recently was introduced to [Sparse Directories in SVN](https://svnbook.red-bean.com/en/1.8/svn.advanced.sparsedirs.html). In SVN, you can initially clone a repository and have it be empty until you checkout the specific files needed. I wondered if I can do the same with `git`. For the *tl;dr* skip to the conclusion section.
@ -119,5 +121,4 @@ You can even set it so that a specific folder is shown at the root of your direc
```bash
git sparse-checkout set FOLDERNAME
```
```