armbian-build/.gitignore
Igor Velkov b7af31d65b fix(gitignore): ignore __pycache__ at all depths (#7863)
`/__pycache__/*` only covered the root level. Replace with `**/__pycache__/`
so that generated bytecode directories in lib/tools/ and elsewhere are ignored.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 09:53:15 +01:00

33 lines
550 B
Plaintext

### Specific to building Armbian ###
/.vagrant/
ubuntu-*-cloudimg-console.log
### to ignore changes in a working copy
.ignore_changes
### compile configurations added by users
/config-*.conf
### but not default (supplied) files
!/config-docker.conf
!/config-vagrant.conf
### output directories
/.tmp/
/output/
/cache/
/*userpatches*/
/userpatches
### General annoyances ###
.DS_Store
*~
*.swp
**/__pycache__/
# Mainly generated by merge tools like 'meld'
*.orig
# Dockerfile and .dockerignore is generated by docker.sh
Dockerfile
.dockerignore