Skip to content
yukilab edited this page Mar 18, 2020 · 3 revisions

Welcome to the covid19 wiki!

How to synchronize your, forked repository with this repository

Precondition:

  • you have forked branch from this repository
# at your project root (of your repository), add remote repository (hereinafter called code4niigata is this repo)
git remote add code4niigata https://github.com/CodeForNiigata/covid19.git

Once above is done, everytime you need to sync with this repo,

# assuming your are on developement branch
git fetch code4niigata && git merge code4niigata/development

NOTE: because above command merge this repo's change into your repo's development branch, I don't recommend changing your repo's development branch directly. (to avoid conflict or unknown result)

Clone this wiki locally