From 7543b475b141b6cee6ea920074274be9ba14fd7a Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 25 Nov 2022 12:08:43 +1100 Subject: [PATCH] gitignore: Simplify top-level gitignore file. All build artefacts are now placed in build*/ directories so there's no longer any need to hide files like .o with .gitignore. Signed-off-by: Damien George --- .gitignore | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/.gitignore b/.gitignore index 7342489927..f33e4bec42 100644 --- a/.gitignore +++ b/.gitignore @@ -1,48 +1,17 @@ -# Compiled Sources -################### -*.o -*.a -*.elf -*.bin -*.map -*.hex -*.dis -*.exe - -# Packages -############ - -# Logs and Databases -###################### -*.log - -# VIM Swap Files -###################### -*.swp - # Build directories -###################### build/ build-*/ +docs/genrst/ # Test failure outputs -###################### tests/results/* # Python cache files -###################### __pycache__/ -*.pyc # Customized Makefile/project overrides -###################### GNUmakefile user.props -# Generated rst files -###################### -genrst/ - # MacOS desktop metadata files -###################### .DS_Store