I have created a adjacent branch from another adjacent branch instead of from master branch. I have added the changes and pushed. Now I have seen that it is like
* master commit update readme (this is how I have noticed it)
| * adj_br_2 commit blahblah
| * adj_br_1 commit blah
|/
* master commit blblbl
Now I want to create the 2nd branch from master instead of from 1st branch.
* master commit update readme (this is how I have noticed it)
| * adj_br_2 commit blahblah
|/
| * adj_br_1 commit blah
|/
* master commit blblbl
Is there a way to do it without clearing and recreating the branch? In fact I need a fast way to fix it. Any suggestions?