リモートリポジトリをあとから作る

cd remote-repos-path
git init --bare --shared=true
cd local-repos-path
git remote add origin remote-repos-path
git config branch.master.merge refs/heads/master
git config branch.master.remote origin
git push origin master
git pull