What would be the best way of synchronizing two repos(one being a mirror) and keep it updated
Orignal step
$ git clone --mirror git@example.com/ori.git
$ cd upstream-repository.git
$ git push --mirror git@example.com/new-location.git
Based on Cronjob
$ cd upstream-repository.git
$ git remote update
$ git push --mirror git@example.com/new-location.git
Does it make sense ?