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