[Git] Add gitignore file
authorgichan <gichan2.jang@samsung.com>
Fri, 12 Aug 2022 01:08:38 +0000 (10:08 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Fri, 12 Aug 2022 01:19:10 +0000 (10:19 +0900)
Ignore the files in the git repo.

Signed-off-by: gichan <gichan2.jang@samsung.com>
.gitignore [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..f64fd09
--- /dev/null
@@ -0,0 +1,39 @@
+##
+# @brief .gitignore list
+
+# ignore cmake build directory
+/build
+
+# vi files
+*.h~
+*.c~
+*.cc~
+*.swp
+
+# binary files
+*.so
+*.o
+*.a
+
+# VisualStudioCode
+.vscode
+.vscode/*
+.history
+
+# ignore files generated by debuild
+debian/*.debhelper.log
+debian/*.postrm.debhelper
+debian/*.substvars
+debian/debhelper-build-stamp
+debian/files
+debian/.debhelper/*
+debian/tmp/*
+
+# Visual Studio & csapi
+*.exe
+*.dll
+*.csproj.user
+*.lock.json
+.vs/
+bin/
+obj/