From af0831082a79d8f8ccbabae04e6b2fac15834c57 Mon Sep 17 00:00:00 2001 From: medusa Date: Fri, 31 May 2024 07:02:11 +0000 Subject: [PATCH] Add tech_docs/git_additional.md --- tech_docs/git_additional.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tech_docs/git_additional.md diff --git a/tech_docs/git_additional.md b/tech_docs/git_additional.md new file mode 100644 index 0000000..1e6a50e --- /dev/null +++ b/tech_docs/git_additional.md @@ -0,0 +1,17 @@ +# Move the files +mv generate_analysis.py src/generate_analysis.py +mv main.py src/main.py +mv mandelbrot_non_vectorized.py src/mandelbrot_non_vectorized.py +mv mandelbrot_vectorized.py src/mandelbrot_vectorized.py + +# Stage the changes +git add src/generate_analysis.py src/main.py src/mandelbrot_non_vectorized.py src/mandelbrot_vectorized.py + +# Remove the old file paths +git rm generate_analysis.py main.py mandelbrot_non_vectorized.py mandelbrot_vectorized.py + +# Commit the changes +git commit -m "Reorganize project structure: move scripts to src directory" + +# Push the changes +git push origin main