I have a pull request for which GitHub tells me \"This branch has conflicts that must be resolved.\" I tried:
~/src/networkx: git rebase origin/master
Curren
First you need to make sure you have the upstream remote repository set:
git remote add upstream git@github.com:networkx/networkx.git
Then You need to fetch upstream/master and then rebase on that. It's something along the lines of:
git fetch upstream
git checkout
git rebase upstream/master
As git replays your work on top of upstream/master, conflicts will be raised and you'll have to dive into the files to resolve them. Then you:
git add
git rebase --continue