From bdbbaaf352673cf9f6aa5f0a066f4adb98dcb1ff Mon Sep 17 00:00:00 2001 From: Will Beason Date: Wed, 11 Aug 2021 07:24:15 -0700 Subject: [PATCH] Disable downloading large files by default Right now we're using LFS for large files, but by default when cloning the repositories, callers ask for the real versions of large files. By setting these settings in the .gitconfig file, we change the default to not download these large files when cloning the repository. Signed-off-by: Will Beason --- .gitconfig | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 000000000..ef1943e45 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,3 @@ +[lfs] + fetchexclude = * +