I have a subdirectory named "www" that is a repo:
site
|-- www/
| |-- .git/
| |-- index.html
|-- design/
| |-- images.jpg
I'd like to change the repo to the parent directory so that the repo structure mirrors the original file structure as follows:
site
|-- .git/
|-- www/
| |-- index.html
|-- design/
| |-- images.jpg
Can this be done? Are there implications with then pushing the changes up to Gitlab?