i am a cs student and i have got a question from my homework
A and B work on the same module. A works on A-Branch, B works on B-Branch.
A Branch:
- a = 1
- b = 2
- //Number of cats
- c = 1
- //Number of dogs
- d = 42
B Branch:
- a = 1
- b = 2
- //Number of cats
- c = 2
- //Number of dogs
- d = 42
B wants to apply this setting in 4th row("c=2" ->"c=1") to his file. But he just wants to take only this row, not the whole file or other files. what should A und B do?