Add tech_docs/git_additional.md

This commit is contained in:
2024-05-31 07:02:11 +00:00
parent 2b56243805
commit af0831082a

View File

@@ -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