How to regularly transfer changes in Git from one branch to another?
I’m a bit newbie to Git, sorry if the question sounds dumb.
I want to work in a branch A and from time to time drop changes from A to a branch B.
But I don’t want to close or delete the branch A, I want to keep working in it.
What is the best way to do this?
I mean, I want to find the right approach so that I can do it regularly, without any extra tweaks.
Cherry-peak? Merge with some options? Something else?
Or is it considered a bad practice at all? Thanks.