Sorry about the n00b-ish questions here, but I'm not fully understanding how Git works apparently.
I have a project. I currently have three branches: Master
, A
, and B
. Master
is meant to have the newest version of the project that is released. Branches A
and B
were created upon the first release of the project. A
is used to fix bugs in the current version while B
is used to create new content for the project. I have made bug fixes using branch A
and pushed them to Master
(so Master
now has the most recent, released version as desired).
The problem is, Branch B
cannot see those fixes and so I am working with outdated code. Is there a way for me to "update" Branch B
with the fixes from A
without going in and copy/pasting all the code that was update?
Thanks in advance.