aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2021-02-16 17:48:42 +0000
committerMichele Di Giorgio <michele.digiorgio@arm.com>2021-02-17 13:25:21 +0000
commitb303fc81320a5dea3722ac858b3363afbf8cfee6 (patch)
tree88ab5a55e75c89277730e3ee85046c6311f983b5
parente28cf395b57a091d0850cd28cecc81046153b843 (diff)
downloadComputeLibrary-b303fc81320a5dea3722ac858b3363afbf8cfee6.tar.gz
Add gitignore file
This file will avoid adding unwanted files to a commit. It includes filters for C++ and Python as well as others. Change-Id: Iedd770f01337bff46ab9873736893ef44e398f0d Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5093 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Georgios Pinitas <georgios.pinitas@arm.com>
-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/