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 <damien@micropython.org>
This commit is contained in:
parent
921f397acb
commit
7543b475b1
|
@ -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 directories
|
||||||
######################
|
|
||||||
build/
|
build/
|
||||||
build-*/
|
build-*/
|
||||||
|
docs/genrst/
|
||||||
|
|
||||||
# Test failure outputs
|
# Test failure outputs
|
||||||
######################
|
|
||||||
tests/results/*
|
tests/results/*
|
||||||
|
|
||||||
# Python cache files
|
# Python cache files
|
||||||
######################
|
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
|
||||||
|
|
||||||
# Customized Makefile/project overrides
|
# Customized Makefile/project overrides
|
||||||
######################
|
|
||||||
GNUmakefile
|
GNUmakefile
|
||||||
user.props
|
user.props
|
||||||
|
|
||||||
# Generated rst files
|
|
||||||
######################
|
|
||||||
genrst/
|
|
||||||
|
|
||||||
# MacOS desktop metadata files
|
# MacOS desktop metadata files
|
||||||
######################
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
Loading…
Reference in New Issue