From 4a18e8b9884a83133ff2bd88da67ae290a614df2 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sun, 9 Jul 2023 22:44:59 +0200 Subject: [PATCH] chore: move common files to subdirectories Signed-off-by: Matej Focko --- .common/{ => cpp}/makefile | 0 .common/{ => cpp}/skeleton.cpp | 0 .gitignore | 6 +++--- 3 files changed, 3 insertions(+), 3 deletions(-) rename .common/{ => cpp}/makefile (100%) rename .common/{ => cpp}/skeleton.cpp (100%) diff --git a/.common/makefile b/.common/cpp/makefile similarity index 100% rename from .common/makefile rename to .common/cpp/makefile diff --git a/.common/skeleton.cpp b/.common/cpp/skeleton.cpp similarity index 100% rename from .common/skeleton.cpp rename to .common/cpp/skeleton.cpp diff --git a/.gitignore b/.gitignore index 330f606..440ed8f 100644 --- a/.gitignore +++ b/.gitignore @@ -10,11 +10,11 @@ !*.html # C++ -!.common/makefile +!.common/cpp/** !*.cpp !*.hpp # but ignore catch -.common/catch* +.common/cpp/catch* # Java -!*.java \ No newline at end of file +!*.java