Currently when I'm working on my local feature branch in order to get latest changes I need to do the following:
git checkout master
git fetch
git rebase
git checkout my-feature
git rebase master
Is there a simplier solution to just pull changes to master branch without switching to it?