github - How to make a git clone --bare into a git clone --mirror -
i accidentally created copy of repo git clone --bare
, can't update original repo. this github article advises --mirror
updates:
if want mirror repository in location, including getting updates original, can clone mirror
git clone --mirror https://github.com/exampleuser/repository-to-mirror.git
how can modify --bare
clone --mirror
repo?
Comments
Post a Comment