From 2cae4be584c5b448aecb17256048e740377b0042 Mon Sep 17 00:00:00 2001 From: gichan Date: Fri, 12 Aug 2022 10:08:38 +0900 Subject: [PATCH] [Git] Add gitignore file Ignore the files in the git repo. Signed-off-by: gichan --- .gitignore | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f64fd09 --- /dev/null +++ b/.gitignore @@ -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/ -- 2.34.1