Remove spaces from all directory and file names#18
Conversation
|
@horner 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs. I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review. |
Co-authored-by: horner <6094599+horner@users.noreply.github.com>
|
@maxklema before I merge, I wonder if this is scary to you. I did not see that many cross references. |
There was a problem hiding this comment.
Looks good @horner. Not many cross-references because this repository is a combination of folders that are spread across our hypervisor and some core-infra containers. That's to say it's not an exact 1:1 replica, and folders on the actual machines use dashes (-) instead of spaces, unlike in this repository.
This PR addresses the issue of spaces in directory names that made URLs cumbersome and error-prone. Previously, accessing directories required URL encoding, creating unwieldy links like:
https://github.com/mieweb/opensource-server/tree/main/container%20creationhttps://github.com/mieweb/opensource-server/tree/main/nginx%20reverse%20proxyChanges made:
ci-cd automation/→ci-cd-automation/container creation/→container-creation/dnsmasq service/→dnsmasq-service/nginx reverse proxy/→nginx-reverse-proxy/Updated references:
.gitmodulesto reflect the new path for the Proxmox-Launchpad submoduleResult:
All URLs now use clean, dash-separated names that are easier to reference and share:
https://github.com/mieweb/opensource-server/tree/main/container-creationhttps://github.com/mieweb/opensource-server/tree/main/nginx-reverse-proxyhttps://github.com/mieweb/opensource-server/tree/main/ci-cd-automationhttps://github.com/mieweb/opensource-server/tree/main/dnsmasq-serviceNo functionality is affected - only the directory names have changed to improve maintainability and usability.
Fixes #17.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.