Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 914 Bytes

FORK.md

File metadata and controls

44 lines (31 loc) · 914 Bytes

Syncing with upstream

Upstream repo CovidShield mobile

To pull in all upstream changes

git remote add upstream git@github.com:CovidShield/mobile.git
git pull upstream master

or

git remote add upstream https://github.com/CovidShield/mobile.git
git pull upstream master

Cherry-pick a PR from upstream

Find the upstream pull request you want to pull in i.e. CovidShield/mobile#147

  1. Create a new branch
git checkout -b upstream-147
  1. Cherry pick the commits from the upstream pull request
git cherry-pick 375efbfc87c79c3abc5f216aa1ce9571ddc7008a
git cherry-pick 095d659b9d9d9bc26ac60159421bce27294e000a
git cherry-pick 81d99c34049f7dd4fd98549ab71b811a1e12e214
  1. Test the updates
  2. Push up the new branch
git push origin upstream-147
  1. Create a pull request