git fetch origin master:master git rebase master
This avoids the `git stash && git checkout master && git pull && git checkout $branchname && git rebase master && git stash pop` dance that I’ve been doing for a long time.
Adventures in Computer Programming – bakert@gmail.com
git fetch origin master:master git rebase master
This avoids the `git stash && git checkout master && git pull && git checkout $branchname && git rebase master && git stash pop` dance that I’ve been doing for a long time.
I do a
git fetch origin
git rebase origin/master