Skip to content

Instantly share code, notes, and snippets.

View toyowata's full-sized avatar

Toyomasa Watarai toyowata

View GitHub Profile
@toyowata
toyowata / How-to-sync-forked-repo.md
Last active February 16, 2022 09:23
How to sync forked repository

Do this once:

$ git remote add upstream git@github.com:armmbed/mbed-os.git

And do this when need to sync:

$ git fetch upstream
$ git merge upstream/master
$ git push