Git flow- Need to create feature branch off of another branch

3.6k Views Asked by At

I am using Git flow and I started out with a develop branch, master branch. Later, created a feature branch branching off of develop and when the functionality was complete, I merged it back to develop. Next time, Instead of creating a new feature branch, I created a new branch and added commits on that. Currently, I am on Origin/Mybranchname instead of develop/my-feature-branch. How do I make my current branch converted as a feature branch that branches off of develop?

1

There are 1 best solutions below

3
On

You need to rename your branch so it follows the convention of feature branches, and then to rebase your branch onto the develop branch.

To rename your current branch, check out your branch and use git branch -m:

git checkout my-branch-name
git branch -m feature/my-branch-name

Once your feature branch has been appropriately renamed, you can proceed with the rebase. Make sure you have the latest origin/develop changes using git fetch, and then rebase your feature branch onto origin/develop using git rebase:

git fetch
git rebase origin/develop

Depending on whether your changes overlap with the ones that have been done on origin/develop, you may have merge conflicts. You can fix these conflicts similarly to the ones you may have had in the past with git merge.