From f71563739c2e2d929517b231e5ba77eaf8ecbef9 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 1 Nov 2025 04:40:25 +0100 Subject: [PATCH] [REPO REFACTOR]: changed to a better git repository structure with branches --- .gitignore | 50 +-------------------- hestia-hub/.gitignore | 2 - {hestia-hub/lib => lib}/Vcc/Vcc.cpp | 0 {hestia-hub/lib => lib}/Vcc/Vcc.h | 0 hestia-hub/platformio.ini => platformio.ini | 0 {hestia-hub/src => src}/main.cpp | 0 6 files changed, 2 insertions(+), 50 deletions(-) delete mode 100644 hestia-hub/.gitignore rename {hestia-hub/lib => lib}/Vcc/Vcc.cpp (100%) rename {hestia-hub/lib => lib}/Vcc/Vcc.h (100%) rename hestia-hub/platformio.ini => platformio.ini (100%) rename {hestia-hub/src => src}/main.cpp (100%) diff --git a/.gitignore b/.gitignore index 46fefa8..b9f3806 100644 --- a/.gitignore +++ b/.gitignore @@ -1,48 +1,2 @@ -# ---> C++ -# Prerequisites -*.d - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app - -# ---> VisualStudioCode -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json -!.vscode/*.code-snippets - -# Local History for Visual Studio Code -.history/ - -# Built Visual Studio Code Extensions -*.vsix - +.pio +.vscode diff --git a/hestia-hub/.gitignore b/hestia-hub/.gitignore deleted file mode 100644 index b9f3806..0000000 --- a/hestia-hub/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.pio -.vscode diff --git a/hestia-hub/lib/Vcc/Vcc.cpp b/lib/Vcc/Vcc.cpp similarity index 100% rename from hestia-hub/lib/Vcc/Vcc.cpp rename to lib/Vcc/Vcc.cpp diff --git a/hestia-hub/lib/Vcc/Vcc.h b/lib/Vcc/Vcc.h similarity index 100% rename from hestia-hub/lib/Vcc/Vcc.h rename to lib/Vcc/Vcc.h diff --git a/hestia-hub/platformio.ini b/platformio.ini similarity index 100% rename from hestia-hub/platformio.ini rename to platformio.ini diff --git a/hestia-hub/src/main.cpp b/src/main.cpp similarity index 100% rename from hestia-hub/src/main.cpp rename to src/main.cpp