Created
July 28, 2015 16:17
-
-
Save jeffbcross/307c6da45d26e29030ef to your computer and use it in GitHub Desktop.
How angular merges PRs
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
#See fetch_pr script https://gist.github.com/vojtajina/5538170 | |
# fetch and checkout PR branch from "upstream" remote | |
fetch_pr 123 | |
git fetch upstream | |
# Replay changes on top of master | |
git rebase upstream/master | |
# Replace upstream/master with this branch | |
git push upstream pr-123:master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment