22
I created another branch as backup and give merge
in it, suppose I’m in branch daniela3
:
git merge origin/develop
Only my branch daniela3
will be affected or origin/develop
too? I mean, I’ll be putting together what’s in origin/develop
-> daniela3
and origin/develop
remains without my changes OR both are updated?
When I "git pull" brings me the update (what was sent in "git push") of ALL remote branches? What’s the difference pull VS merge?
– Daniela Morais
Well, that’s another question :) but
git pull
brings only what is in the repository where you are connecting. If it has branches which have not been merged.– Maniero
I get it, thank you!
– Daniela Morais