Assume you do a git push remote_a from remote_b. Is this the same as git pull remote_b from remote_a?
FYI: I’m trying to get a handle on the underlying mechanisms and improve my understanding of git. I have read many tutorials but feel almost as confused as when I first started!
Though both does the same thing, push just pushes to remote where as pull is fetch+merge. To push from remote_a and to pull from remote_b you should have appropriate entries in the config file at each side.