From f0935b323fce0cbad20b070626ac1f48b598ac3c Mon Sep 17 00:00:00 2001 From: Vicente Olivert Riera Date: Mon, 4 Jul 2022 11:49:14 +0900 Subject: [PATCH] Ignore target files The resulting deb files inside the "target" directory are not ignored by Git, therefore the output of "git status" is not clean since there are untracked changes. Everything under the "target" directory should be ignored, hence adding a ".gitignore" file for it. Also, the ".gitkeep" file is no longer necessary since the "target" directory will not be empty thanks to the ".gitignore" file we have added. --- target/.gitignore | 3 +++ target/.gitkeep | 0 2 files changed, 3 insertions(+) create mode 100644 target/.gitignore delete mode 100644 target/.gitkeep diff --git a/target/.gitignore b/target/.gitignore new file mode 100644 index 0000000..94548af --- /dev/null +++ b/target/.gitignore @@ -0,0 +1,3 @@ +* +*/ +!.gitignore diff --git a/target/.gitkeep b/target/.gitkeep deleted file mode 100644 index e69de29..0000000