2
0

.gitignore 549 B

1234567891011121314151617181920212223242526272829303132
  1. ### Specific to building Armbian ###
  2. /.vagrant/
  3. ubuntu-*-cloudimg-console.log
  4. ### to ignore changes in a working copy
  5. .ignore_changes
  6. ### compile configurations added by users
  7. /config-*.conf
  8. ### but not default (supplied) files
  9. !/config-docker.conf
  10. !/config-vagrant.conf
  11. ### output directories
  12. /.tmp/
  13. /output/
  14. /cache/
  15. /*userpatches*/
  16. /userpatches
  17. ### General annoyances ###
  18. .DS_Store
  19. *~
  20. *.swp
  21. /__pycache__/*
  22. # Mainly generated by merge tools like 'meld'
  23. *.orig
  24. # Dockerfile and .dockerignore is generated by docker.sh
  25. Dockerfile
  26. .dockerignore