I am attempting to split up a repository that contains a client and server into two repositories, and I want to move the respective folders to the root while also keeping the files I already had in root - project readmes, .gitlab-ci.yml, .gitignore, .gitattributes` and so on.
I tried the following line with no luck:
git filter-repo --path .gitattributes --path .gitignore [...] --subdirectory-filter server
The result was something I still don't quite understand; the subdir filter seemed to have worked, but whole commits full of changes ended up missing. The above clearly wasn't the correct way to do this, assuming there even is a correct way.
I hacked my way out of it by using separate calls with --path-rename-match to first move the root files to the server subdir so that they would be moved back to root by a final call with --subdirectory-filter server, but that doesn't seem right at all.
--subdirectory-filteris the wrong filter here. You want--tree-filterwith renaming, probably. Note that this is extremely slow (the--tree-filtermethod is the slowest one) so you might want to look into usinggit filter-repoinstead.git filter-repoinstead of ...git filter-repo?git filter-repoinstead ofgit filter-branch. You're already using the new one. :-)