I am new to Github and Github Desktop.
I have a branch "development", and another branch created "feature" based on "development".
Once another person pushes the updated code in the "development" branch - if I am at the "development" branch, fetch origin then pull, of course I will have the updated code locally. But what if I am in the "feature" branch? If I fetch origin and pull (assume there is no merge conflict), will the updated code in the "development" branch replace my code in the "feature" branch?
Thank you for helping!