git-lfs 0.6.0

Large file storage for git, implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
List the patterns that Git LFS is currently tracking:

    git lfs track

Configure Git LFS to track GIF files:

    git lfs track "*.gif"

Configure Git LFS to track PSD files and make them read-only unless
locked:

    git lfs track --lockable "*.psd"

Configure Git LFS to track the file named `project [1].psd`:

    git lfs track --filename "project [1].psd"