Phabricator supports GIT LFS for large file storage outside of the git index.
Only a reference to the file is stored tracking the changes.
## Installation
* Download and install the package for your operating system: https://github.com/github/git-lfs/releases
* Setup git lfs, `git lfs install`
* Profit!
## Usage
* In an existing git repository, track a new big file, `git lfs track bigfile.bin`
* Add the file to git, commit and push
```
git add bigfile.bin
git commit -m "Added a bigfile"
git push origin master
```
* You can also track a pattern of files, so every new file matching this pattern with be added using lfs:
```git lfs track *.png```
* Voila!