I have been happily using git on my machine for a project "MyProject". MyProject is actually part of a larger collaborative research effort "WholeThing". There is virtually no overlap between myProject and OtherProjects in the WholeThing.
Now, Big Bosses have decided to put all development onto a central git repository (for documentation and backup). Makes sense to me so far.
Assume I have no privileged access to the central repository.
The problem is, that MyProject maps into a sub-directory of the WholeThing, i.e.
local repo:
MyProject -|
|- .git
|
|- dirs
remote repo:
WholeThing -|
|- .git
|
|- Area1
|
|- Area2
|------ MyProject
|------ DudesProject
How do I get my local repository into the proper sub-directory on the central repository while preserving history and branches?
I (think I ;) understand remote branches and stuff, but I have not yet figured out a way to prefix the path of MyProject's file with "WholeThing/Area2" short of moving the files in my local repository and creating a commit before pushing. There surely must another way?
I also do not mind to clone the WholeThing and navigate down to MyProject once all the migration is done ... so I am not looking for submodules or such (and I don't have administrative access to the central repository).
Any ideas are welcome!
Cheers, Jose