When I have a repository with the following settings:
- branch
devwith fetch/push remote (A) - branch
masterwith fetch/push remote (B)
and I push branch dev to (A), will git send to the server only changes applied to this branch or is there a risk that other changes will get there too?
In other words: is git strict about branches when pushing changes to the server?
Background: remote (B) contains internal code modifications that I don't want to notify the other remote about.