Created
March 4, 2016 16:52
-
-
Save niqdev/a5227ab4ae405e33f386 to your computer and use it in GitHub Desktop.
apply changes to my forked repo after pull request
This file contains 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 redux-timeout/ | |
# lists all remotes | |
git remote -v | |
# add another remote (SSH) | |
git remote add gpfunk [email protected]:gpfunk/redux-timeout.git | |
git remote -v | |
git fetch -p | |
git branch -a | |
# remove local branch used for pull-request (remote branch already deleted) | |
git branch -D remove-actions | |
git branch -a | |
# fetch other remote | |
git fetch gpfunk | |
# apply changes from remote to master | |
git checkout master | |
git rebase gpfunk/master | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment