From 2b66de555d097fb3f00355880154ef79ef598711 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 12 Jul 2023 21:49:29 +0100 Subject: [PATCH] gitignore: ignore archives --- .gitignore | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/.gitignore b/.gitignore index 22afce3..7f1509c 100644 --- a/.gitignore +++ b/.gitignore @@ -239,3 +239,41 @@ temp/ # VorTechnix stuff .vdev/ +# Created by https://www.toptal.com/developers/gitignore/api/archives +# Edit at https://www.toptal.com/developers/gitignore?templates=archives + +### Archives ### +# It's better to unpack these files and commit the raw source because +# git has its own built in compression methods. +*.7z +*.jar +*.rar +*.zip +*.gz +*.gzip +*.tgz +*.bzip +*.bzip2 +*.bz2 +*.xz +*.lzma +*.cab +*.xar + +# Packing-only formats +*.iso +*.tar + +# Package management formats +*.dmg +*.xpi +*.gem +*.egg +*.deb +*.rpm +*.msi +*.msm +*.msp +*.txz + +# End of https://www.toptal.com/developers/gitignore/api/archives