If you’ve made commits to a master branch and you then want to update your current branch to reflect those changes, use
git rebase master
when in your feature branch.
See this article on rebase vs. merge for a fuller explanation
If you’ve made commits to a master branch and you then want to update your current branch to reflect those changes, use
git rebase master
when in your feature branch.
See this article on rebase vs. merge for a fuller explanation