aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore47
1 files changed, 47 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000..85c6e00c49
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,47 @@
+# Library builds
+build/
+
+# Cscope/Ctags files
+*cscope*
+
+# Text files
+*.txt
+*.xml
+*.embed
+
+# Generated Android bp file
+Generated_Android.bp
+
+# Vim swap files
+*.swp
+
+# Logs
+*.log
+
+### C++ ###
+# Object files
+*.o
+
+# Dynamic libraries
+*.so
+
+# Static libraries
+*.a
+
+# Executable binaries
+*.out
+
+### Python ###
+# Byte-compiled files
+*.py[cod]
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/