From d9d17f6d71b931769cb814ba9f574cb15b30fc33 Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Sat, 1 Apr 2023 15:34:35 -0700 Subject: [PATCH] git: add .gitattributes file ignoring assets/ during archiving We don't need to archive assets/ subdir when packaging libbpf sources in retsnoop and veristat repos. Mark assets/ as export-ignore to skip it. Signed-off-by: Andrii Nakryiko --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..4218518 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +assets/ export-ignore