From c4c03dde60b412ac04374f16558406214768ddf4 Mon Sep 17 00:00:00 2001 From: Hojun-Cho Date: Sat, 20 Jun 2026 21:54:29 +0900 Subject: [PATCH] gitignore: ignore downloaded media so an in-tree run can't commit content running got in the repo root drops downloaded files next to the source; torrents/control files were already ignored, add common media (mkv/mp4/ avi/mov/webm/iso/mp3/flac) so anime/ISO downloads don't show up as untracked and can't be committed by accident. --- .gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index 269047f..3f0741b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,13 @@ ref/ bin/ .torrent.db* *.part + +# media downloaded by running got in the repo tree (never commit content) +*.mkv +*.mp4 +*.avi +*.mov +*.webm +*.iso +*.mp3 +*.flac