From b5765876407b93ea6be161fc13e97fbc0f629eb1 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Sun, 9 Jun 2024 16:44:10 +0200 Subject: [PATCH] note how to use git lfs --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 47ca1cc..52db120 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,14 @@ If your [graphics card does not support vulcan](https://github.com/godotengine/g ```bash godot --rendering-driver opengl3 ``` + +Git Large File Server +===================== + +Git's large-file-server (LFS) lets you track your fat binary files, without making the repository bloated and awful for everyone else in the future. + +If you want to track 'jpg' files, you can track them like this: + +```bash +git lfs track "*jpg" +```