Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 220 Bytes

git_merge_upstream.md

File metadata and controls

19 lines (15 loc) · 220 Bytes
git remote add upstream <URL_of_original_repo>
git fetch upstream
git checkout master
git merge upstream/master -m "Merging changes from upstream/master"
git push origin master