25 lines
284 B
Markdown
25 lines
284 B
Markdown
---
|
|
title: "git-lfs"
|
|
tags: [ "Documentation", "data" ]
|
|
---
|
|
|
|
Install, and add with
|
|
|
|
```bash
|
|
git lfs install
|
|
```
|
|
|
|
Then track some filetype with:
|
|
|
|
```bash
|
|
git lfs track "\*.ttf"
|
|
```
|
|
|
|
Or a directory with:
|
|
|
|
```bash
|
|
git lfs track "images/"
|
|
```
|
|
|
|
All changes require adding `.gitattributes`.
|