Skip to content
Jonathan Lefebvre edited this page Jul 14, 2021 · 2 revisions

Welcome to the django-health-check wiki!

GrandFather, official repo

https://github.com/KristianOellegaard/django-health-check

Pull request "why we forked"

https://github.com/KristianOellegaard/django-health-check/pull/206

How to update the current repo with the grandfather

  • $ git remote -v to see the father repo
  • $ git remote set-url upstream https://github.com/KristianOellegaard/django-health-check.git to change the stream
  • $ git remote -v to validate it work and you should see
origin  https://github.com/WEGOTRADE/django-health-check.git (fetch)
origin  https://github.com/WEGOTRADE/django-health-check.git (push)
upstream        https://github.com/KristianOellegaard/django-health-check.git (fetch)
upstream        https://github.com/KristianOellegaard/django-health-check.git (push)
  • $ git fetch upstream
  • $ git pull upstream tags/3.16.4 select the right branch/tags/commit hash you wish to pull from
  • $ git push origin

Note: