diff options
author | Jeff Epler <jepler@unpythonic.net> | 2025-09-26 17:39:45 -0500 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-10-06 11:10:42 +1100 |
commit | 325ec7e30e028efba66e46288a9f315598b03ab3 (patch) | |
tree | 9a49254924b4a2bb663c36fe030ab5c523dbc9be | |
parent | 8204f9e8c3a877535b4a445b61030974be7cbd61 (diff) |
gitignore: Ignore files created by ci.sh zepyhr and esp8266.HEADorigin/masterorigin/HEADmaster
After locally building zephyr e.g., with
$ tools/ci.sh zephyr_setup zephyr_run_tests
these directories are created by the build system. However, they should
never be tracked by git. Similarly with the esp8266 ci.sh functions.
Signed-off-by: Jeff Epler <jepler@unpythonic.net>
-rw-r--r-- | .gitignore | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index b5010dfd1..56616426f 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,11 @@ user.props # MacOS desktop metadata files .DS_Store + +# Created by ci.sh zephyr targets +/.ccache +/zephyrproject + +# Created by ci.sh esp8266 targets +/xtensa-lx106-elf-standalone.tar.gz +/xtensa-lx106-elf/ |