You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)