I have a local Git repository with the following folder structure.
kronos
|-- org_maps
| |-- attach_departments.ahk
| `-- attach_jobs.ahk
|-- org_sets
| `-- create_org_sets.ahk
`-- labor_level_sets
`-- create_labor_sets.ahk
I want to expand the scope of my Git repository by moving my root folder up one level.
scripts
|-- kronos
| |-- org_maps
| | |-- attach_departments.ahk
| | `-- attach_jobs.ahk
| |-- org_sets
| | `-- create_org_sets.ahk
| `-- labor_level_sets
| `-- create_labor_sets.ahk
`-- peoplesoft
`-- kronos
`-- add_elig_departments.ahk
I've read How can I move the root of my git repository?, but the top answer suggests rewriting history which I would like to avoid.
How can I move the root of my git repository up one level without relocating my existing files and subfolders?