Skip to content

Instantly share code, notes, and snippets.

@mondain
Created January 11, 2016 14:33
Show Gist options
  • Save mondain/a5bda44af2554c15191b to your computer and use it in GitHub Desktop.
Save mondain/a5bda44af2554c15191b to your computer and use it in GitHub Desktop.
Ice4j rebase
Add the remote repo as "upstream"
git remote add upstream [email protected]:jitsi/ice4j.git
Get the remote repo
git fetch upstream
Ensure you're on your fork's master branch
git checkout master
Rebase with the remote master
git rebase upstream/master
Very first push of work on your fork may require -f
git push -f origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment