To use this Git LFS server in your project, follow these steps:
-
Add a file named
.lfsconfigto the root of your repository with the following contents:[lfs] url = "https://astarties.ameri.io/api/my-org/my-repo"
...where
my-org/my-repois the name of the Git repository.Make sure
.lfsconfigis 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
.gitattributesis committed:git add .gitattributes
-
Use
git add,git commit, andgit pushas 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.