diff --git a/templates/index.html b/templates/index.html index 8b59f48..df22c9f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,18 +7,35 @@
-To use this Git LFS server in your project, add a file named
-.lfsconfig
to the root of your repository with the
-following contents:
-
[lfs] -url = "{{ api }}/my-org/my-repo"- -
-...where my-org/my-repo
is the name of the Git
-repository.
-
Add a file named .lfsconfig
to the root of your
+ repository with the following contents:
[lfs] +url = "{{ api }}/my-org/my-repo"+
...where my-org/my-repo
is the name of the Git repository.
Make sure .lfsconfig
is committed:
git add .lfsconfig+
Select the file types you'd like Git LFS to manage (or directly edit
+ your .gitattributes
). You can configure additional file
+ extensions at anytime.
git lfs track "*.psd"+
Make sure .gitattributes
is committed:
git add .gitattributes+
Use git add
, git commit
, and git
+ push
as you normally would:
git add foo.psd +git commit -m "Add design file" +git push+
Please see https://git-lfs.github.com/ for more information about how to use the Git LFS client.