[Common] Add .gitignore
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Fri, 15 Jun 2018 00:00:46 +0000 (09:00 +0900)
committer문지중/동작제어Lab(SR)/Principal Engineer/삼성전자 <jijoong.moon@samsung.com>
Fri, 15 Jun 2018 00:07:15 +0000 (09:07 +0900)
Ignore the following files in the git repo:
- cmake build
- golden test generated files
- vi files
- binary (object) files
- ctag

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
.gitignore [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..84425f9
--- /dev/null
@@ -0,0 +1,23 @@
+##
+# @brief .gitignore list
+
+# ignore cmake build directory
+/build
+
+# ignore golden test generated files
+/tests/*/*.log
+/tests/*/*.golden
+/tests/*/*.png
+
+# vi files
+*.h~
+*.c~
+*.swp
+
+# binary files
+*.so
+*.o
+*.a
+
+# CTag
+/tags