Suppose I was on master branch and created a new branch:
git checkout -b feature_branch
I started to work on feature_branch, and at some point I would like to merge my changes to master using rebase. So, I do:
# Get the latest code on master
git checkout master
git pull
# Rebase on master and push the most updated 'feature_branch'
git checkout feature_branch
git rebase master
git push
# Merge 'feature_branch' to 'master' and push the updated 'master'
git checkout master
git merge feature_branch
git push
# Back to work on 'feature_branch'
git checkout feature_branch
Is there a way to reduce the number of steps and achieve the same?
At the end of the process I would like master, origin/master, feature_branch, and origin/feature_branch, to point to the same commit.