Last active
April 21, 2016 12:18
-
-
Save niqdev/2d075acf85095fa6aa1ae14bad408785 to your computer and use it in GitHub Desktop.
apply changes to a forked repo after the pull request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd openwebnet-android | |
# lists all remotes | |
git remote -v | |
# add my remote to your repo (SSH) | |
git remote add niqdev [email protected]: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