From 2da37e79317475f090ae932afa88031595297043 Mon Sep 17 00:00:00 2001 From: MyungJoo Ham Date: Fri, 15 Jun 2018 09:00:46 +0900 Subject: [PATCH] [Common] Add .gitignore 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 --- .gitignore | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..84425f9751 --- /dev/null +++ b/.gitignore @@ -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