Skip to content
Rajesh edited this page Mar 30, 2017 · 3 revisions

Syncing with upstreams

Run git remote -v

If already setup it will show

upstream	https://github.com/wnzhang/rtb-papers.git (fetch)
upstream	https://github.com/wnzhang/rtb-papers.git (push)

If not already setup run

git remote add upstream https://github.com/wnzhang/rtb-papers.git  

Updating with remote

git fetch upstream
git checkout master
git merge upstream/master

Push changes to github