Currently, when I am working on my local function branch to get the 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 simpler solution to just pull changes to the master branch without switching to it?
source share