Hello! If i have Dev branch and B-52 branch
Now my Dev branch is ahead of B-52 around 30 commits.
( B-52 is made from master so I can't merge Dev into it)
And B-52 holds this feature that I made and only that branch has it.
I can't create a branch from Dev either, because we make them from Master only..Don't ask
Now I need to change something in B-52, is it okay to push it to Dev does only the changed item go into dev?
#Git branches
5 messages · Page 1 of 1 (latest)
if you merge B-52 into DEV, every change that has been made will be also changed into DEV.
you could create a new branch from Master, let's call it B-53.
then you can merge B-52 into B-53 and then you can do your changes in B-53.
.
if you wish you can then merge DEV into B-53 and see what happens
Oh that B-53 idea is nice