I have a situation. Let's say two developers are working on two different branches Aand B.
-- master --
| |
A <-- B
The industry is Baffected by changes in A. However, the changes in are not yet merged into master. I would like to start working on my function (branch B) with the changes in A, and then discard them when I finished testing. What is the recommended way?
source
share