Skip to content

Instantly share code, notes, and snippets.

@niqdev
Last active April 21, 2016 12:18
Show Gist options
  • Save niqdev/2d075acf85095fa6aa1ae14bad408785 to your computer and use it in GitHub Desktop.
Save niqdev/2d075acf85095fa6aa1ae14bad408785 to your computer and use it in GitHub Desktop.
apply changes to a forked repo after the pull request
cd openwebnet-android
# lists all remotes
git remote -v
# add my remote to your repo (SSH)
git remote add niqdev git@github.com:openwebnet/openwebnet-android.git
# verify
git remote -v
# update your repo with the latest changes
git fetch niqdev
git checkout development
git rebase niqdev/development
git push origin development
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment