I have a remote machine RemoteMachine which hold the clone of another MachineWeNotConcern with:
git clone MachineWeNotConcern/prj prj
My local machine clone like this:
git clone RemoteMachine/prj local_prj
Now I want to make the RemoteMachine's repos to bare(how?) as if I checked with:
git clone --bare MachineWeNotConcern/prj prj
And I don't want to re-clone from my bare repos of the RemoteMachine because it always takes to much time.
How can I achieve this?