Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 393 Bytes

merging-upstream-repo.md

File metadata and controls

15 lines (10 loc) · 393 Bytes

Merging an Upstream repo into a fork

checkout the branch you wish to merge to (maybe master or upstream)

$ git checkout upstream

Pull the desired branch from upstream into your branch

$ git pull https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git BRANCH_NAME

source