Last Updated: February 25, 2016
·
471
· ashish

Git - keep a feature branch updated

git checkout parent-branch
git pull --rebase upstream parent-branch
git checkout feature-branch
git rebase parent-branch