From cbf6d8352919c6018dc243a152e78e7053270b8c Mon Sep 17 00:00:00 2001 From: mckay Date: Sun, 5 Jan 2025 22:22:32 +0800 Subject: [PATCH] Update .gitignore to exclude additional file types and directories - Added 'libtorch/' to prevent tracking of specific library files. - Included patterns for '*.pth' and '*.zip' to exclude model and archive files. - Ensured proper formatting and consistency in the .gitignore file. --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e3f0bb7..dfcd347 100644 --- a/.gitignore +++ b/.gitignore @@ -148,6 +148,7 @@ compile_commands.json CTestTestfile.cmake _deps/ build/ +libtorch/ # Logs *.log @@ -162,4 +163,7 @@ logs/ .idea/ *.swp *.swo -*~ \ No newline at end of file +*~ + +*.pth +*.zip \ No newline at end of file