On my local, if the HEAD is currently at branch_1, and if I do:
- git fetch origin
Would Git fetch from origin the updates of all branches? Or just updates of only branch_1?
- git fetch branch_2
Would Git fetch only origin's branch_2? If yes, then would it fetch to my local's branch_1 or branch_2?