diff options
author | 8ctopus <13252042+8ctopus@users.noreply.github.com> | 2019-10-06 09:38:10 +0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-10-06 12:38:09 +0800 |
commit | 93e2ce699babb60818c0d5e75eda39f0e9263216 (patch) | |
tree | ad064b778b73f00a05802fd6380fc62fa2e01dea | |
parent | 8a828500e689b7958e050ebd2dc46d380c3d6ae6 (diff) | |
download | gitea-93e2ce699babb60818c0d5e75eda39f0e9263216.tar.gz gitea-93e2ce699babb60818c0d5e75eda39f0e9263216.zip |
Doc added instructions for Git LFS support (#8391)
-rw-r--r-- | docs/content/doc/usage/git-lfs-support.md | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/content/doc/usage/git-lfs-support.md b/docs/content/doc/usage/git-lfs-support.md new file mode 100644 index 0000000000..2d5fab3cb3 --- /dev/null +++ b/docs/content/doc/usage/git-lfs-support.md @@ -0,0 +1,26 @@ +--- +date: "2019-10-06T08:00:00+05:00" +title: "Usage: Git LFS setup" +slug: "git-lfs-setup" +weight: 12 +toc: true +draft: false +menu: + sidebar: + parent: "usage" + name: "Git LFS setup" + weight: 12 + identifier: "git-lfs-setup" +--- + +# Git Large File Storage setup + +To use Gitea's built-in LFS support, you must update the `app.ini` file: + +```ini +[server] +; Enables git-lfs support. true or false, default is false. +LFS_START_SERVER = true +; Where your lfs files reside, default is data/lfs. +LFS_CONTENT_PATH = /home/gitea/data/lfs +```
\ No newline at end of file |